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

add hint to @Ignore annotations per #440

Fixes: #440
morrme 9 лет назад
Родитель
Сommit
c0d08e45c7
1 измененных файлов: 4 добавлений и 4 удалений
  1. 4
    4
      exercises/saddle-points/src/test/java/MatrixTest.java

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

@@ -23,7 +23,7 @@ public class MatrixTest {
23 23
         assertEquals(expectedSaddlePoints, matrix.getSaddlePoints());
24 24
     }
25 25
 
26
-    @Ignore
26
+    @Ignore("Remove to run test")
27 27
     @Test
28 28
     public void testCanIdentifyThatEmptyMatrixHasNoSaddlePoints() {
29 29
         Matrix matrix = new Matrix(new ArrayList<>());
@@ -33,7 +33,7 @@ public class MatrixTest {
33 33
         assertEquals(expectedSaddlePoints, matrix.getSaddlePoints());
34 34
     }
35 35
 
36
-    @Ignore
36
+    @Ignore("Remove to run test")
37 37
     @Test
38 38
     public void testCanIdentifyLackOfSaddlePointsWhenThereAreNone() {
39 39
         Matrix matrix = new Matrix(Arrays.asList(
@@ -47,7 +47,7 @@ public class MatrixTest {
47 47
         assertEquals(expectedSaddlePoints, matrix.getSaddlePoints());
48 48
     }
49 49
 
50
-    @Ignore
50
+    @Ignore("Remove to run test")
51 51
     @Test
52 52
     public void testCanIdentifyMultipleSaddlePoints() {
53 53
         Matrix matrix = new Matrix(Arrays.asList(
@@ -65,7 +65,7 @@ public class MatrixTest {
65 65
         assertEquals(expectedSaddlePoints, matrix.getSaddlePoints());
66 66
     }
67 67
 
68
-    @Ignore
68
+    @Ignore("Remove to run test")
69 69
     @Test
70 70
     public void testCanIdentifySaddlePointInBottomRightCorner() {
71 71
         Matrix matrix = new Matrix(Arrays.asList(