예제 #1
0
        public void Reverse(string source, string expected)
        {
            string result = Chapter1Questions.Reverse(source);

            Assert.Equal(expected, result);
        }
예제 #2
0
        public void AllUniqueCharacters(string value, bool expected)
        {
            bool result = Chapter1Questions.AllUniqueCharacters(value);

            Assert.Equal(expected, result);
        }