1 25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransacRequiredNewRuntime; 28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredNewException; 29 import org.testng.annotations.BeforeMethod; 30 import org.testng.annotations.Test; 31 32 48 public class TestRequiredNewExceptionRemoteSFSB extends TestRequiredNewException { 49 50 54 @Test(groups = {"runtime exception tests"}) 55 @Override 56 public void testCallOtherBeanNotSup() throws Exception { 57 super.testCallOtherBeanNotSup(); 58 } 59 60 64 @Test(groups = {"runtime exception tests"}) 65 @Override 66 public void testUsingClientTrans() throws Exception { 67 super.testUsingClientTrans(); 68 } 69 70 74 @Test(groups = {"runtime exception tests"}) 75 @Override 76 public void testCallOtherBeanReq() throws Exception { 77 super.testCallOtherBeanReq(); 78 } 79 80 84 @Override 85 public void createBeanRuntime() throws Exception { 86 super.createBeanRuntime(SFSBContainerTransacRequiredNewRuntime.class); 87 } 88 89 90 94 @BeforeMethod 95 @Override 96 public void setup() throws Exception { 97 super.setup(); 98 } 99 100 } 101 | Popular Tags |