예제 #1
0
        public void IsPalindrome_ReturnFalse()
        {
            checkString = new CheckString();
            var result = checkString.IsPalindrome("1234");

            Assert.IsFalse(result);
        }
예제 #2
0
        public void IsPalindrome_ReturnFalse(string value)
        {
            var result = checkString.IsPalindrome(value);

            Assert.IsFalse(result);
        }