1 25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransactionDefaultRuntime; 28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredException; 29 import org.testng.annotations.BeforeMethod; 30 import org.testng.annotations.Test; 31 32 48 public class TestDefaultExceptionRemoteSFSB extends TestRequiredException { 49 50 54 @BeforeMethod 55 @Override 56 public void setup() throws Exception { 57 super.setup(); 58 } 59 60 64 @Test(groups = {"runtime exception tests"}) 65 @Override 66 public void testCallOtherBeanNotSup() throws Exception { 67 super.testCallOtherBeanNotSup(); 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(SFSBContainerTransactionDefaultRuntime.class); 87 } 88 89 90 } 91 | Popular Tags |