Bläddra i källkod

palindrome-products: add hint to @Ignore annotations

morrme 9 år sedan
förälder
incheckning
5a41fd3858

+ 4
- 4
exercises/palindrome-products/src/test/java/PalindromeCalculatorTest.java Visa fil

@@ -34,7 +34,7 @@ public class PalindromeCalculatorTest {
34 34
     }
35 35
 
36 36
     @Test
37
-    @Ignore
37
+    @Ignore("Remove to run test")
38 38
     public void largestPalindromeFromDoubleDigitFactors() {
39 39
         final List<List<Integer>> expected = Collections.unmodifiableList(
40 40
                 Arrays.asList(
@@ -49,7 +49,7 @@ public class PalindromeCalculatorTest {
49 49
     }
50 50
 
51 51
     @Test
52
-    @Ignore
52
+    @Ignore("Remove to run test")
53 53
     public void smallestPalindromeFromDoubleDigitFactors() {
54 54
         final List<List<Integer>> expected = Collections.unmodifiableList(
55 55
                 Arrays.asList(
@@ -64,7 +64,7 @@ public class PalindromeCalculatorTest {
64 64
     }
65 65
 
66 66
     @Test
67
-    @Ignore
67
+    @Ignore("Remove to run test")
68 68
     public void largestPalindromeFromTripleDigitFactors() {
69 69
         final List<List<Integer>> expected = Collections.unmodifiableList(
70 70
                 Arrays.asList(
@@ -79,7 +79,7 @@ public class PalindromeCalculatorTest {
79 79
     }
80 80
 
81 81
     @Test
82
-    @Ignore
82
+    @Ignore("Remove to run test")
83 83
     public void smallestPalindromeFromTripleDigitFactors() {
84 84
         final List<List<Integer>> expected = Collections.unmodifiableList(
85 85
                 Arrays.asList(