1 25 package org.objectweb.easybeans.tests.annotations; 26 27 import org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.local.SLSBTestLocalAnnotation00; 28 import org.objectweb.easybeans.tests.common.helper.EJBHelper; 29 import org.objectweb.easybeans.tests.common.interfaces.ItfTestLocalAnnotation00; 30 import org.testng.annotations.BeforeMethod; 31 import org.testng.annotations.Test; 32 33 42 public class TestLocalAnnotation00 implements ItfTestLocalAnnotation00{ 43 44 47 private ItfTestLocalAnnotation00 bean; 48 49 55 @Test 56 public void testRun00() throws Exception { 57 bean.testRun00(); 58 } 59 60 66 @Test 67 public void testRun01() throws Exception { 68 bean.testRun01(); 69 } 70 71 77 @Test 78 public void testRun02() throws Exception { 79 bean.testRun02(); 80 } 81 82 86 @BeforeMethod 87 public void startUp() throws Exception { 88 bean = EJBHelper.getBeanRemoteInstance(SLSBTestLocalAnnotation00.class, ItfTestLocalAnnotation00.class); 89 } 90 } 91 | Popular Tags |