Przeglądaj źródła

Merge pull request #494 from mraediaz/ignore-testname

linked list: add hint to @Ignore annotations
FridaTveit 9 lat temu
rodzic
commit
9d47f46f97

+ 4
- 4
exercises/linked-list/src/test/java/DoublyLinkedListTest.java Wyświetl plik

@@ -22,7 +22,7 @@ public class DoublyLinkedListTest {
22 22
         assertThat(subject.pop(), is(10));
23 23
     }
24 24
 
25
-    @Ignore
25
+    @Ignore("Remove to run test")
26 26
     @Test
27 27
     public void testPushShift() {
28 28
         subject.push(10);
@@ -31,7 +31,7 @@ public class DoublyLinkedListTest {
31 31
         assertThat(subject.shift(), is(20));
32 32
     }
33 33
 
34
-    @Ignore
34
+    @Ignore("Remove to run test")
35 35
     @Test
36 36
     public void testUnshiftShift() {
37 37
         subject.unshift(10);
@@ -40,7 +40,7 @@ public class DoublyLinkedListTest {
40 40
         assertThat(subject.shift(), is(10));
41 41
     }
42 42
 
43
-    @Ignore
43
+    @Ignore("Remove to run test")
44 44
     @Test
45 45
     public void testUnshiftPop() {
46 46
         subject.unshift(10);
@@ -49,7 +49,7 @@ public class DoublyLinkedListTest {
49 49
         assertThat(subject.pop(), is(20));
50 50
     }
51 51
 
52
-    @Ignore
52
+    @Ignore("Remove to run test")
53 53
     @Test
54 54
     public void testExample() {
55 55
         subject.push(10);