}
@Test
public void shouldNotSupportMessageIfNoProcessors() throws Exception {
RoundRobinProcessor processor = new RoundRobinProcessor();
Assert.assertFalse(processor.supports(new Message()));
}
@Test
public void shouldConfigureAndDestroyProcessors() throws Exception {
Processor p1 = mock(Processor.class, withSettings().extraInterfaces(Configurable.class));