1 17 package org.apache.servicemix.jbi.messaging; 18 19 import org.apache.servicemix.jbi.nmr.flow.Flow; 20 import org.apache.servicemix.jbi.nmr.flow.seda.SedaFlow; 21 22 25 public class SedaFlowTransactionTest extends AbstractTransactionTest { 26 27 protected Flow createFlow() { 28 return new SedaFlow(); 29 } 30 31 public void testAsyncSendSyncReceive() throws Exception { 32 try { 33 super.testAsyncSendSyncReceive(); 34 fail("Seda flow does not handle asynchronous transactional exchanges"); 35 } catch (Exception e) { 36 } 38 } 39 40 public void testAsyncSendAsyncReceive() throws Exception { 41 try { 42 super.testAsyncSendAsyncReceive(); 43 fail("Seda flow does not handle asynchronous transactional exchanges"); 44 } catch (Exception e) { 45 } 47 } 48 49 } 50 | Popular Tags |