use of javax.ejb.EJBLocalHome in project tomee by apache.
the class StatefulPojoEjbLocalObjectTests method test02_getEjbLocalHome.
public void test02_getEjbLocalHome() {
try {
final EJBLocalHome localHome = ejbLocalObject.getEJBLocalHome();
assertNotNull("The EJBHome is null", localHome);
} catch (final Exception e) {
fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
}
Aggregations