Exemplo n.º 1
0
 @Test
 public void testIsPalindrome_EvenLetters() {
   assertTrue(StringyThingies.isPalindrome("noon"));
 }
Exemplo n.º 2
0
 @Test
 public void testIsPalindrome_NotPalindrome() {
   assertFalse(StringyThingies.isPalindrome("batman"));
 }
Exemplo n.º 3
0
 //	// Next Block!
 //
 @Test
 public void testIsPalindrome_OddLetters() {
   assertTrue(StringyThingies.isPalindrome("level"));
 }