瀏覽代碼

Merge pull request #475 from morrme/ignorepalprod

palindrome-products: add hint to @Ignore annotations
FridaTveit 9 年之前
父節點
當前提交
5a94e944d1
共有 1 個檔案被更改,包括 4 行新增4 行删除
  1. 4
    4
      exercises/palindrome-products/src/test/java/PalindromeCalculatorTest.java

+ 4
- 4
exercises/palindrome-products/src/test/java/PalindromeCalculatorTest.java 查看文件

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