Exemplo n.º 1
0
        public void should_return_logest_str_index_in_given_string(string s, int expectedLength)
        {
            // Act
            var actualLength = Solution.LengthOfLongestSubstring(s);

            // Assert
            Assert.AreEqual(actualLength, expectedLength);
        }