Kaynağa Gözat

matrix: add hint to @Ignore annotations

morrme 9 yıl önce
ebeveyn
işleme
29a0505b03

+ 5
- 5
exercises/matrix/src/test/java/MatrixTest.java Dosyayı Görüntüle

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