Skip to content
Prev Previous commit
Next Next commit
Removed @ignore from several test cases - which couses test to hang.
  • Loading branch information
Tomas Lukosius committed Feb 28, 2011
commit 315c6d0f6a8e616cbc0098f45633e551bad0cc89
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void testListenerSunnyDay() throws Exception {
}

@Test
@Ignore ("RabbitMQ connection can not be obtained if running in Parameterized mode")
// @Ignore ("RabbitMQ connection can not be obtained if running in Parameterized mode")
public void testChannelAwareListenerSunnyDay() throws Exception {
CountDownLatch latch = new CountDownLatch(messageCount);
doSunnyDayTest(latch, new ChannelAwareListener(latch));
Expand All @@ -169,7 +169,7 @@ public void testListenerWithException() throws Exception {
}

@Test
@Ignore ("RabbitMQ connection can not be obtained if running in Parameterized mode")
// @Ignore ("RabbitMQ connection can not be obtained if running in Parameterized mode")
public void testChannelAwareListenerWithException() throws Exception {
CountDownLatch latch = new CountDownLatch(messageCount);
doListenerWithExceptionTest(latch, new ChannelAwareListener(latch, true));
Expand Down