public void ValueOfLongestSubstringWithoutDuplication()
        {
            string expected = "abc";
            string actual   = LongestSubstringWithoutDuplication.Value("abcabcbb");

            Assert.AreEqual(expected, actual);
        }