Selaa lähdekoodia

matrix: add hint to @Ignore annotations

morrme 9 vuotta sitten
vanhempi
commit
29a0505b03
1 muutettua tiedostoa jossa 5 lisäystä ja 5 poistoa
  1. 5
    5
      exercises/matrix/src/test/java/MatrixTest.java

+ 5
- 5
exercises/matrix/src/test/java/MatrixTest.java Näytä tiedosto

44
         }
44
         }
45
     }
45
     }
46
 
46
 
47
-    @Ignore
47
+    @Ignore("Remove to run test")
48
     @RunWith(Parameterized.class)
48
     @RunWith(Parameterized.class)
49
     public static class CountColumnsTest {
49
     public static class CountColumnsTest {
50
         private Matrix matrix;
50
         private Matrix matrix;
76
         }
76
         }
77
     }
77
     }
78
 
78
 
79
-    @Ignore
79
+    @Ignore("Remove to run test")
80
     @RunWith(Parameterized.class)
80
     @RunWith(Parameterized.class)
81
     public static class GetFirstRowTest {
81
     public static class GetFirstRowTest {
82
         private Matrix matrix;
82
         private Matrix matrix;
108
         }
108
         }
109
     }
109
     }
110
 
110
 
111
-    @Ignore
111
+    @Ignore("Remove to run test")
112
     @RunWith(Parameterized.class)
112
     @RunWith(Parameterized.class)
113
     public static class GetLastRowTest {
113
     public static class GetLastRowTest {
114
         private Matrix matrix;
114
         private Matrix matrix;
140
         }
140
         }
141
     }
141
     }
142
 
142
 
143
-    @Ignore
143
+    @Ignore("Remove to run test")
144
     @RunWith(Parameterized.class)
144
     @RunWith(Parameterized.class)
145
     public static class GetFirstColumnTest {
145
     public static class GetFirstColumnTest {
146
         private Matrix matrix;
146
         private Matrix matrix;
173
     }
173
     }
174
 
174
 
175
 
175
 
176
-    @Ignore
176
+    @Ignore("Remove to run test")
177
     @RunWith(Parameterized.class)
177
     @RunWith(Parameterized.class)
178
     public static class GetLastColumnTest {
178
     public static class GetLastColumnTest {
179
         private Matrix matrix;
179
         private Matrix matrix;