@Test
public void callSystemExceptionHandlerWhenExceptionIsMessagingException() throws Exception
{
MuleContext context = new DefaultMuleContextFactory().createMuleContext();
context.setExceptionListener(mockSystemExceptionHandler);
context.handleException(mockMessagingException);
verify(mockSystemExceptionHandler, VerificationModeFactory.times(1)).handleException(mockMessagingException,null);
}
@Test
public void getObjectStoreManager() throws Exception