Procházet zdrojové kódy

flatten-array: add hint to @Ignore annotations

morrme před 9 roky
rodič
revize
97819bfac9

+ 5
- 5
exercises/flatten-array/src/test/java/FlattenerTest.java Zobrazit soubor

30
                 "two")));
30
                 "two")));
31
     }
31
     }
32
 
32
 
33
-    @Ignore
33
+    @Ignore("Remove to run test")
34
     @Test
34
     @Test
35
     public void testASingleLevelOfNestingWithNoNulls() {
35
     public void testASingleLevelOfNestingWithNoNulls() {
36
         assertEquals(
36
         assertEquals(
48
               8)));
48
               8)));
49
     }
49
     }
50
 
50
 
51
-    @Ignore
51
+    @Ignore("Remove to run test")
52
     @Test
52
     @Test
53
     public void testFiveLevelsOfNestingWithNoNulls() {
53
     public void testFiveLevelsOfNestingWithNoNulls() {
54
         assertEquals(
54
         assertEquals(
71
               "-2")));
71
               "-2")));
72
     }
72
     }
73
 
73
 
74
-    @Ignore
74
+    @Ignore("Remove to run test")
75
     @Test
75
     @Test
76
     public void testSixLevelsOfNestingWithNoNulls() {
76
     public void testSixLevelsOfNestingWithNoNulls() {
77
         assertEquals(
77
         assertEquals(
94
               "8")));
94
               "8")));
95
     }
95
     }
96
 
96
 
97
-    @Ignore
97
+    @Ignore("Remove to run test")
98
     @Test
98
     @Test
99
     public void testSixLevelsOfNestingWithNulls() {
99
     public void testSixLevelsOfNestingWithNulls() {
100
         assertEquals(
100
         assertEquals(
118
               "negative two")));
118
               "negative two")));
119
     }
119
     }
120
 
120
 
121
-    @Ignore
121
+    @Ignore("Remove to run test")
122
     @Test
122
     @Test
123
     public void testNestedListsFullOfNullsOnly() {
123
     public void testNestedListsFullOfNullsOnly() {
124
         assertEquals(
124
         assertEquals(