1 25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransactionSupportsRuntime; 28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestSupportsException; 29 import org.testng.annotations.BeforeMethod; 30 import org.testng.annotations.Test; 31 32 33 49 public class TestSupportsExceptionRemoteSFSB extends TestSupportsException { 50 51 55 @Test(groups = {"runtime exception tests"}) 56 @Override 57 public void testCallOtherBeanNotSupWithoutTrans() throws Exception { 58 super.testCallOtherBeanNotSupWithoutTrans(); 59 } 60 61 65 @Test(groups = {"runtime exception tests"}) 66 @Override 67 public void testCallOtherBeanNotSupWithTrans() throws Exception { 68 super.testCallOtherBeanNotSupWithTrans(); 69 } 70 71 75 @Test(groups = {"runtime exception tests"}) 76 @Override 77 public void testCallOtherBeanReqWithoutTrans() throws Exception { 78 super.testCallOtherBeanReqWithoutTrans(); 79 } 80 81 85 @Test(groups = {"runtime exception tests"}) 86 @Override 87 public void testCallOtherBeanReqWithTrans() throws Exception { 88 super.testCallOtherBeanReqWithTrans(); 89 } 90 91 95 @Override 96 public void createBeanRuntime() throws Exception { 97 super.createBeanRuntime(SFSBContainerTransactionSupportsRuntime.class); 98 } 99 100 104 @BeforeMethod 105 @Override 106 public void setup() throws Exception { 107 super.setup(); 108 } 109 110 111 } 112 | Popular Tags |