@Test
public void testStopStartConditionalDeclarations() throws Exception {
RabbitTemplate template = context.getBean(RabbitTemplate.class);
this.listenerContainer2.start();
template.convertAndSend("otherExchange", "otherAnon", "foo");
assertNotNull(queue.poll(10, TimeUnit.SECONDS));
this.listenerContainer2.stop();
this.listenerContainer2.start();
template.convertAndSend("otherExchange", "otherAnon", "foo");
assertNotNull(queue.poll(10, TimeUnit.SECONDS));