Browse Source

SumOfMultiples : add hint to @Ignore annotations

#473
Melany Diaz 9 years ago
parent
commit
6712b2ebd8
1 changed files with 11 additions and 11 deletions
  1. 11
    11
      exercises/sum-of-multiples/src/test/java/SumOfMultiplesTest.java

+ 11
- 11
exercises/sum-of-multiples/src/test/java/SumOfMultiplesTest.java View File

18
     }
18
     }
19
 
19
 
20
     @Test
20
     @Test
21
-    @Ignore
21
+    @Ignore("Remove to run test")
22
     public void testSumOfMultiplesOf3and5UpToFour() {
22
     public void testSumOfMultiplesOf3and5UpToFour() {
23
 
23
 
24
         int[] set = {
24
         int[] set = {
31
     }
31
     }
32
 
32
 
33
     @Test
33
     @Test
34
-    @Ignore
34
+    @Ignore("Remove to run test")
35
     public void testSumOfMultiplesOf3and5UpToTen() {
35
     public void testSumOfMultiplesOf3and5UpToTen() {
36
 
36
 
37
         int[] set = {
37
         int[] set = {
44
     }
44
     }
45
 
45
 
46
     @Test
46
     @Test
47
-    @Ignore
47
+    @Ignore("Remove to run test")
48
     public void testSumOfMultiplesOf3and5UpToOneHundred() {
48
     public void testSumOfMultiplesOf3and5UpToOneHundred() {
49
 
49
 
50
         int[] set = {
50
         int[] set = {
57
     }
57
     }
58
 
58
 
59
     @Test
59
     @Test
60
-    @Ignore
60
+    @Ignore("Remove to run test")
61
     public void testSumOfMultiplesOf3and5UpToOneThousand() {
61
     public void testSumOfMultiplesOf3and5UpToOneThousand() {
62
 
62
 
63
         int[] set = {
63
         int[] set = {
70
     }
70
     }
71
 
71
 
72
     @Test
72
     @Test
73
-    @Ignore
73
+    @Ignore("Remove to run test")
74
     public void testSumOfMultiplesOf7and13and17UpToTwenty() {
74
     public void testSumOfMultiplesOf7and13and17UpToTwenty() {
75
 
75
 
76
         int[] set = {
76
         int[] set = {
84
     }
84
     }
85
 
85
 
86
     @Test
86
     @Test
87
-    @Ignore
87
+    @Ignore("Remove to run test")
88
     public void testSumOfMultiplesOf4and6UpToFifteen() {
88
     public void testSumOfMultiplesOf4and6UpToFifteen() {
89
 
89
 
90
         int[] set = {
90
         int[] set = {
97
     }
97
     }
98
 
98
 
99
     @Test
99
     @Test
100
-    @Ignore
100
+    @Ignore("Remove to run test")
101
     public void testSumOfMultiplesOf5and6and8UpToOneHundredFifty() {
101
     public void testSumOfMultiplesOf5and6and8UpToOneHundredFifty() {
102
 
102
 
103
         int[] set = {
103
         int[] set = {
111
     }
111
     }
112
 
112
 
113
     @Test
113
     @Test
114
-    @Ignore
114
+    @Ignore("Remove to run test")
115
     public void testSumOfMultiplesOf5and25UpToTwoHundredSeventyFive() {
115
     public void testSumOfMultiplesOf5and25UpToTwoHundredSeventyFive() {
116
 
116
 
117
         int[] set = {
117
         int[] set = {
124
     }
124
     }
125
 
125
 
126
     @Test
126
     @Test
127
-    @Ignore
127
+    @Ignore("Remove to run test")
128
     public void testSumOfMultiplesOf43and47UpToTenThousand() {
128
     public void testSumOfMultiplesOf43and47UpToTenThousand() {
129
 
129
 
130
         int[] set = {
130
         int[] set = {
137
     }
137
     }
138
 
138
 
139
     @Test
139
     @Test
140
-    @Ignore
140
+    @Ignore("Remove to run test")
141
     public void testSumOfMultiplesOfOneUpToOneHundred() {
141
     public void testSumOfMultiplesOfOneUpToOneHundred() {
142
 
142
 
143
         int[] set = {
143
         int[] set = {
149
     }
149
     }
150
 
150
 
151
     @Test
151
     @Test
152
-    @Ignore
152
+    @Ignore("Remove to run test")
153
     public void testSumOfMultiplesOfNoneUpToTenThousand() {
153
     public void testSumOfMultiplesOfNoneUpToTenThousand() {
154
 
154
 
155
         int[] set = {};
155
         int[] set = {};