Пример #1
0
        public void StringProblems_ReplaceSpaces_ReturnsSameStringIfStringContainsNoSpaces()
        {
            // Act
            stringExpected = "helloworld";
            stringActual   = text.ReplaceSpaces("helloworld");

            // Assert
            stringActual.Should().Be(stringExpected);
        }