UserTransaction utx = TransactionHelper.getUserTransaction();
try {
utx.begin();
beanMandatory.insertTableCorrect(DB_NAME, TABLE_NAME);
} finally {
utx.rollback();
}
try {
slsbDatabaseManager.verifyTable(DB_NAME, TABLE_NAME);
fail("The deployment descriptor did not override the "
+ "annotation. The bean did not use the client transaction in mandatory mode.");