@Test
public void testTransactionalDoesntFailWithAnotherResourceType() throws Exception
{
Flow flow = (Flow) getFlowConstruct("transactionalDoesntFailWithAnotherResourceType");
MuleEvent event = getTestEvent("message", flow);
flow.process(event);
Integer countWithType1 = getCountWithType1();
Integer countWithType2 = getCountWithType2();
Integer countWithType3 = getCountWithType3();
assertThat(countWithType1,Is.is(1));
assertThat(countWithType2,Is.is(1));