1 25 package org.objectweb.easybeans.tests.persistence.lifetime; 26 27 import static org.objectweb.easybeans.tests.common.helper.EJBHelper.getBeanRemoteInstance; 28 29 import org.objectweb.easybeans.tests.common.ejbs.base.persistencectxlife.BasePctxLifeCMETester00; 30 import org.objectweb.easybeans.tests.common.ejbs.base.persistencectxlife.ItfPCtxLifetime00; 31 import org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.persistencectxlife.SFSBPCtxLifeCME00; 32 import org.testng.annotations.AfterMethod; 33 import org.testng.annotations.BeforeMethod; 34 import org.testng.annotations.Test; 35 36 47 public class TestPersistenceLifetimeCMExtended00 extends BasePctxLifeCMETester00{ 48 49 53 @BeforeMethod 54 public void startUp() throws Exception { 55 ItfPCtxLifetime00 bean00 = getBeanRemoteInstance(SFSBPCtxLifeCME00.class, ItfPCtxLifetime00.class); 56 super.setBean(bean00); 57 } 58 59 68 @Override 69 @Test 70 public void test00() throws Exception { 71 super.test00(); 72 } 73 74 81 @Override 82 @Test 83 public void test01() throws Exception { 84 super.test01(); 85 } 86 87 95 @Override 96 @Test 97 public void test02() throws Exception { 98 super.test02(); 99 } 100 101 109 @Override 110 @Test 111 public void test03() throws Exception { 112 super.test03(); 113 } 114 115 123 @Override 124 @Test 125 public void test04() throws Exception { 126 super.test04(); 127 } 128 129 133 @Override 134 @AfterMethod 135 public void tearDown() throws Exception { 136 super.tearDown(); 137 } 138 } 139 | Popular Tags |