Fix palindrome unit test

One of the test cases was not as described in the test method name. Also corrected formatting in another test case.
This commit is contained in:
Atanas Gegov
2020-04-04 00:57:04 +03:00
committed by GitHub
parent 9a2408d226
commit 8ee342279d

View File

@@ -11,13 +11,13 @@ public class PalindromeUnitTest {
@Test
public void whenEmptyString_thanAccept() {
Palindrome palindromeTester = new Palindrome();
assertTrue(palindromeTester.isPalindrome("noon"));
assertTrue(palindromeTester.isPalindrome(""));
}
@Test
public void whenPalindrom_thanAccept() {
Palindrome palindromeTester = new Palindrome();
assertTrue(palindromeTester.isPalindrome("noon"));
public void whenPalindrom_thanAccept() {
Palindrome palindromeTester = new Palindrome();
assertTrue(palindromeTester.isPalindrome("noon"));
}
@Test