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