Package org.apache.aries.transaction.test

Examples of org.apache.aries.transaction.test.TestBean


public class InvalidTranAttributeTest extends AbstractIntegrationTest {
 
  @Test
  public void testInvalid() throws Exception {
      TestBean bean = context().getService(TestBean.class, "(tranAttribute=Invalid)");
     
      //Test without client transaction - an exception is thrown because the bean is not
      //configured correctly, i.e. multiple transaction elements match to the same method
      //name.
      try {
          bean.insertRow("testWithoutClientTran", 1);
          fail("IllegalStateException not thrown");
      } catch (IllegalStateException e) {
          e.printStackTrace();
      }
  }
View Full Code Here

TOP

Related Classes of org.apache.aries.transaction.test.TestBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.