1 25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransactionRequiredRuntime; 28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestRequiredException; 29 import org.testng.annotations.BeforeClass; 30 import org.testng.annotations.Test; 31 32 48 public class TestRequiredExceptionRemoteSFSB extends TestRequiredException { 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 testCallOtherBeanReq() throws Exception { 67 super.testCallOtherBeanReq(); 68 } 69 70 74 @Override 75 public void createBeanRuntime() throws Exception { 76 super.createBeanRuntime(SFSBContainerTransactionRequiredRuntime.class); 77 } 78 79 83 @BeforeClass 84 @Override 85 public void setup() throws Exception { 86 super.setup(); 87 } 88 89 } 90 | Popular Tags |