예제 #1
0
        public void StringProblems_IsSubstringRotation_ReturnsTrueIfS2IsASubstringOfS1()
        {
            // Act
            boolActual = text.IsSubstring("erbottlewat", "waterbottle");

            // Assert
            boolActual.Should().BeTrue();
        }