muleContext.getDefaultThreadingProfile());
threadingProfile.setDoThreading(false);
threadingProfile.setMuleContext(muleContext);
MessageProcessor mockListener = mock(MessageProcessor.class);
when(mockListener.process((MuleEvent)any())).thenThrow(new RuntimeException());
SedaStageInterceptingMessageProcessor sedaStageInterceptingMessageProcessor = new SedaStageInterceptingMessageProcessor(
"testProcessOneWayNoThreadingWithException", "testProcessOneWayNoThreadingWithException",
queueProfile, queueTimeout, threadingProfile, queueStatistics, muleContext);
sedaStageInterceptingMessageProcessor.setListener(mockListener);