// create, begin, rollback
tx = txMnger.getNewTransaction();
assertNull(tx.getTransactionId());
assertNull(txMnger.getTransactionContext());
tx.begin();
assertNotNull (tx.getTransactionId());
assertNotNull (txMnger.getTransactionContext().getTransactionId());
assertEquals (txMnger.getTransactionContext().getTransactionId(), tx.getTransactionId());
tx.rollback();