1 25 package org.objectweb.easybeans.tests.transaction.containermanaged.stateful; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.transaction.SFSBContainerTransacNeverRuntime; 28 import org.objectweb.easybeans.tests.transaction.containermanaged.base.TestNeverException; 29 import org.testng.annotations.BeforeMethod; 30 import org.testng.annotations.Test; 31 32 48 public class TestNeverExceptionRemoteSFSB extends TestNeverException { 49 50 51 52 56 @Test(groups = {"runtime exception tests"}) 57 @Override  58 public void testCallOtherBeanNotSup() throws Exception { 59 super.testCallOtherBeanNotSup(); 60 } 61 62 66 @Test(groups = {"runtime exception tests"}) 67 @Override  68 public void testCallOtherBeanReq() throws Exception { 69 super.testCallOtherBeanReq(); 70 } 71 72 73 74 75 79 @Override  80 public void createBeanRuntime() throws Exception { 81 super.createBeanRuntime(SFSBContainerTransacNeverRuntime.class); 82 } 83 84 88 @BeforeMethod 89 @Override  90 public void setup() throws Exception { 91 super.setup(); 92 } 93 94 } 95 | Popular Tags |