public void testNoTransactionCommitB()
throws Exception
{
getLog().debug("Retrieving enitity");
EJBLoad entity = getEJBLoadHomeB().findByPrimaryKey("Entity");
entity.wasEJBLoadCalled();
getLog().debug("Testing that ejb load is invoked again");
entity.noTransaction();
assertTrue("Should reload for option b after access outside a transaction", entity.wasEJBLoadCalled());
}