1 25 package org.objectweb.easybeans.tests.common.resources; 26 27 import static org.testng.Assert.assertTrue; 28 29 import javax.ejb.EJB ; 30 31 import org.objectweb.easybeans.tests.common.ejbs.base.ItfOneMethod01; 32 33 34 40 public class EJBTester { 41 42 45 @EJB (beanName="EJBInjectionBean", name="ejb/ejbInjectionBean") 46 private ItfOneMethod01 bean; 47 48 51 public EJBTester(){ 52 } 53 54 58 protected void access00() throws Exception { 59 assertTrue(bean.getBool(), "Error accessing EJB."); 60 } 61 62 } 63 | Popular Tags |