public void LengthOfLongestSubstringWithoutDuplication() { int expected = 3; int actual = LongestSubstringWithoutDuplication.Length("abcabcbb"); Assert.AreEqual(expected, actual); }