Quellcode durchsuchen

linked list: add hint to @Ignore annotations

Ref. #448
Melany Diaz vor 9 Jahren
Ursprung
Commit
475cf2393c
1 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen
  1. 4
    4
      exercises/linked-list/src/test/java/DoublyLinkedListTest.java

+ 4
- 4
exercises/linked-list/src/test/java/DoublyLinkedListTest.java Datei anzeigen

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