Explorar el Código

flatten-array: add hint to @Ignore annotations

morrme hace 9 años
padre
commit
97819bfac9
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. 5
    5
      exercises/flatten-array/src/test/java/FlattenerTest.java

+ 5
- 5
exercises/flatten-array/src/test/java/FlattenerTest.java Ver fichero

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