* the environment entry java:comp/UserTransaction
* </P>
*/
public void test02_java_comp_UserTransaction() {
try {
final Transaction t = ejbObject.jndiUserTransaction();
assertNotNull("UserTransaction is null. Could not retreive a UserTransaction from the bean's JNDI namespace.", t);
} catch (final Exception e) {
fail("Could not retreive a UserTransaction from the bean's JNDI namespace. Received Exception " + e.getClass() + " : " + e.getMessage());
}
}