getLog().debug("=========================================");
getLog().debug("");
;
getLog().debug(++test+"- "+"Looking up the home BMTStateful...");
BMTStatefulHome bmtSFHome = (BMTStatefulHome) ctx.lookup("BMTStateful");
if (bmtSFHome != null ) getLog().debug("ok");
getLog().debug(++test+"- "+"Calling create on BMTStatefulHome...");
BMTStateful bmtSF = bmtSFHome.create();
getLog().debug(++test+"- "+"Calling create(anything) on BMTStatefulHome...");
bmtSFHome.create("coca");
getLog().debug("OK");
getLog().debug(++test+"- "+"Can the bean access its UserTransaction");
getLog().debug(bmtSF.txExists());
getLog().debug(++test+"- "+"Testing commit on UserTransaction");
getLog().debug(bmtSF.txCommit());