public void testMixStaticFactoryt() throws Exception
{
MessageProcessorChain chain = DefaultMessageProcessorChain.from(new TestIntercepting(),
new TestNonIntercepting(), new TestNonIntercepting(), new TestIntercepting(),
new TestNonIntercepting(), new TestNonIntercepting());
MuleEvent restul = chain.process(getTestEventUsingFlow(""));
assertEquals(
"InterceptingMessageProcessorMessageProcessorMessageProcessorInterceptingMessageProcessorMessageProcessorMessageProcessor",
restul.getMessage().getPayload());
}