31
31
import java .util .Map ;
32
32
import java .util .concurrent .TimeoutException ;
33
33
34
- import org .junit .Ignore ;
35
34
import org .junit .Test ;
36
35
37
36
import com .rabbitmq .client .AMQP ;
@@ -120,7 +119,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
120
119
drain (c , 2 );
121
120
}
122
121
123
- @ Ignore
124
122
@ Test public void noAckObeysLimit ()
125
123
throws IOException
126
124
{
@@ -144,7 +142,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
144
142
drain (c2 , 1 );
145
143
}
146
144
147
- @ Ignore
148
145
@ Test public void permutations ()
149
146
throws IOException
150
147
{
@@ -162,7 +159,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
162
159
}
163
160
}
164
161
165
- @ Ignore
166
162
@ Test public void fairness ()
167
163
throws IOException
168
164
{
@@ -192,7 +188,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
192
188
193
189
}
194
190
195
- @ Ignore
196
191
@ Test public void singleChannelAndQueueFairness ()
197
192
throws IOException
198
193
{
@@ -242,7 +237,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
242
237
assertTrue (counts .get ("c2" ).intValue () > 0 );
243
238
}
244
239
245
- @ Ignore
246
240
@ Test public void consumerLifecycle ()
247
241
throws IOException
248
242
{
@@ -264,7 +258,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
264
258
channel .queueDelete (queue );
265
259
}
266
260
267
- @ Ignore
268
261
@ Test public void setLimitAfterConsume ()
269
262
throws IOException
270
263
{
@@ -289,7 +282,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
289
282
drain (c , 1 );
290
283
}
291
284
292
- @ Ignore
293
285
@ Test public void limitDecrease ()
294
286
throws IOException
295
287
{
@@ -310,7 +302,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
310
302
drain (c , 2 );
311
303
}
312
304
313
- @ Ignore
314
305
@ Test public void limitingMultipleChannels ()
315
306
throws IOException
316
307
{
@@ -347,7 +338,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
347
338
drain (c , 1 );
348
339
}
349
340
350
- @ Ignore
351
341
@ Test public void recoverReducesLimit () throws Exception {
352
342
channel .basicQos (2 , true );
353
343
QueueingConsumer c = new QueueingConsumer (channel );
0 commit comments