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