@Test
public void oneWayAsyncRequestException() throws MuleException, InterruptedException
{
TriggerableMessageSource source = new TriggerableMessageSource();
Flow pipeline = new Flow("test", muleContext);
pipeline.setProcessingStrategy(new AsynchronousProcessingStrategy());
final CountDownLatch latch = new CountDownLatch(1);
pipeline.setMessageSource(source);
pipeline.setExceptionListener(new DefaultMessagingExceptionStrategy());
List<MessageProcessor> processors = new ArrayList<MessageProcessor>();
processors.add(new MessageProcessor()