From 5db740b1adf201baad2dcf3c80b2e633abcc6a65 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 29 Jan 2014 18:48:27 -0500 Subject: [PATCH] INT-3278 Ignore ChannelTests Some CI Servers don't have Rabbit running. Need to port the BrokerRunning rule from Spring-AMQP --- .../springframework/integration/amqp/channel/ChannelTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/channel/ChannelTests.java b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/channel/ChannelTests.java index 46cfc7dabf..10025c1c2b 100644 --- a/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/channel/ChannelTests.java +++ b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/channel/ChannelTests.java @@ -21,6 +21,7 @@ import java.util.Collection; import java.util.concurrent.CyclicBarrier; import java.util.concurrent.TimeUnit; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; @@ -54,6 +55,7 @@ public class ChannelTests { private ConfigurableApplicationContext context; @Test + @Ignore public void pubSubLostConnectionTest() throws Exception { final CyclicBarrier latch = new CyclicBarrier(2); channel.subscribe(new MessageHandler() {