1 25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransactionMandatoryRuntime; 28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestMandatoryException; 29 import org.testng.annotations.BeforeMethod; 30 import org.testng.annotations.Test; 31 32 33 48 public class TestMandatoryExceptionRemoteSFSB extends TestMandatoryException{ 49 50 51 55 @Test(groups = {"runtime exception tests"}) 56 @Override 57 public void testCallOtherBeanNotSup() throws Exception { 58 super.testCallOtherBeanNotSup(); 59 } 60 61 65 @Test(groups = {"runtime exception tests"}) 66 @Override 67 public void testCallOtherBeanReq() throws Exception { 68 super.testCallOtherBeanReq(); 69 } 70 71 75 @Override 76 public void createBeanRuntime() throws Exception { 77 super.createBeanRuntime(SFSBContainerTransactionMandatoryRuntime.class); 78 } 79 80 84 @BeforeMethod 85 @Override 86 public void setup() throws Exception { 87 super.setup(); 88 } 89 90 } 91 | Popular Tags |