Browse Source

flatten-array: add @Ignore to tests [Fix #379]

MichaelSpets 9 years ago
parent
commit
abe85c54f9
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      exercises/flatten-array/src/test/java/FlattenerTest.java

+ 4
- 0
exercises/flatten-array/src/test/java/FlattenerTest.java View File

32
               8)));
32
               8)));
33
     }
33
     }
34
 
34
 
35
+    @Ignore
35
     @Test
36
     @Test
36
     public void testFiveLevelsOfNestingWithNoNulls() {
37
     public void testFiveLevelsOfNestingWithNoNulls() {
37
         assertEquals(
38
         assertEquals(
54
               "-2")));
55
               "-2")));
55
     }
56
     }
56
 
57
 
58
+    @Ignore
57
     @Test
59
     @Test
58
     public void testSixLevelsOfNestingWithNoNulls() {
60
     public void testSixLevelsOfNestingWithNoNulls() {
59
         assertEquals(
61
         assertEquals(
76
               "8")));
78
               "8")));
77
     }
79
     }
78
 
80
 
81
+    @Ignore
79
     @Test
82
     @Test
80
     public void testSixLevelsOfNestingWithNulls() {
83
     public void testSixLevelsOfNestingWithNulls() {
81
         assertEquals(
84
         assertEquals(
99
               "negative two")));
102
               "negative two")));
100
     }
103
     }
101
 
104
 
105
+    @Ignore
102
     @Test
106
     @Test
103
     public void testNestedListsFullOfNullsOnly() {
107
     public void testNestedListsFullOfNullsOnly() {
104
         assertEquals(
108
         assertEquals(