use of org.apache.openejb.test.stateless.BasicStatelessBusinessLocal in project tomee by apache.
the class EncStatefulBean method lookupStatelessBusinessLocal.
public void lookupStatelessBusinessLocal() throws TestFailureException {
try {
try {
final InitialContext ctx = new InitialContext();
Assert.assertNotNull("The InitialContext is null", ctx);
final Object o = ctx.lookup("java:comp/env/stateful/beanReferences/stateless-business-local");
final BasicStatelessBusinessLocal object = (BasicStatelessBusinessLocal) o;
Assert.assertNotNull("The EJB BusinessLocal is null", object);
} catch (final Exception e) {
e.printStackTrace();
Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
} catch (final AssertionFailedError afe) {
throw new TestFailureException(afe);
}
}
use of org.apache.openejb.test.stateless.BasicStatelessBusinessLocal in project tomee by apache.
the class ContextLookupBmpBean method lookupStatelessBusinessLocal.
public void lookupStatelessBusinessLocal() throws TestFailureException {
try {
try {
final BasicStatelessBusinessLocal object = (BasicStatelessBusinessLocal) ejbContext.lookup("entity/bmp/beanReferences/stateless-business-local");
Assert.assertNotNull("The EJB BusinessLocal is null", object);
} catch (final Exception e) {
Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
} catch (final AssertionFailedError afe) {
throw new TestFailureException(afe);
}
}
use of org.apache.openejb.test.stateless.BasicStatelessBusinessLocal in project tomee by apache.
the class EncBmpBean method lookupStatelessBusinessLocal.
public void lookupStatelessBusinessLocal() throws TestFailureException {
try {
try {
final InitialContext ctx = new InitialContext();
Assert.assertNotNull("The InitialContext is null", ctx);
final Object o = ctx.lookup("java:comp/env/entity/bmp/beanReferences/stateless-business-local");
final BasicStatelessBusinessLocal object = (BasicStatelessBusinessLocal) o;
Assert.assertNotNull("The EJB BusinessLocal is null", object);
} catch (final Exception e) {
e.printStackTrace();
Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
} catch (final AssertionFailedError afe) {
throw new TestFailureException(afe);
}
}
use of org.apache.openejb.test.stateless.BasicStatelessBusinessLocal in project tomee by apache.
the class ContextLookupCmpBean method lookupStatelessBusinessLocal.
public void lookupStatelessBusinessLocal() throws TestFailureException {
try {
try {
final BasicStatelessBusinessLocal object = (BasicStatelessBusinessLocal) ejbContext.lookup("entity/cmp/beanReferences/stateless-business-local");
Assert.assertNotNull("The EJB BusinessLocal is null", object);
} catch (final Exception e) {
Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
} catch (final AssertionFailedError afe) {
throw new TestFailureException(afe);
}
}
use of org.apache.openejb.test.stateless.BasicStatelessBusinessLocal in project tomee by apache.
the class EncCmp2Bean method lookupStatelessBusinessLocal.
public void lookupStatelessBusinessLocal() throws TestFailureException {
try {
try {
final InitialContext ctx = new InitialContext();
Assert.assertNotNull("The InitialContext is null", ctx);
final Object o = ctx.lookup("java:comp/env/entity/cmp/beanReferences/stateless-business-local");
final BasicStatelessBusinessLocal object = (BasicStatelessBusinessLocal) o;
Assert.assertNotNull("The EJB BusinessLocal is null", object);
} catch (final Exception e) {
e.printStackTrace();
Assert.fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
} catch (final AssertionFailedError afe) {
throw new TestFailureException(afe);
}
}
Aggregations