Skip to content

Commit e56fb1f

Browse files
author
Gonzalo Diaz
committed
This block of commented-out lines of code should be removed.
Sections of code should not be commented out java:S125
1 parent 770ef60 commit e56fb1f

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

algorithm-exercises-java/src/test/java/ae/projecteuler/helper/PalindromeTest.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,6 @@ private class PalindromTestCase {
1717
}
1818
}
1919

20-
// @Test void instanceCaseTest() {
21-
// Palindrome classUnderTest = new Palindrome();
22-
23-
// assertNotNull(classUnderTest);
24-
// assertInstanceOf(
25-
// Palindrome.class,
26-
// classUnderTest,
27-
// String.format("Must be an instance of %s", Palindrome.class));
28-
// }
29-
3020
@Test void listOfPalindromBorderCaseTest() {
3121

3222
PalindromTestCase[] testCases = {
@@ -37,6 +27,4 @@ private class PalindromTestCase {
3727
assertEquals(testCase.answer, Palindrome.isPalindrome(testCase.input));
3828
}
3929
}
40-
41-
4230
}

0 commit comments

Comments
 (0)