Просмотр исходного кода

Merge pull request #482 from morrme/ignorematrix

matrix: add hint to @Ignore annotations
FridaTveit 9 лет назад
Родитель
Сommit
93975df5dd
1 измененных файлов: 5 добавлений и 5 удалений
  1. 5
    5
      exercises/matrix/src/test/java/MatrixTest.java

+ 5
- 5
exercises/matrix/src/test/java/MatrixTest.java Просмотреть файл

@@ -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;