try
{
setNumberOfCalls(2);
setNumberOfResources(1);
Service01 mService = new Service01(mNumberOfResources);
TxStats mStats = new TxStats();
startTx();
mService.setupOper(true);
mService.doWork(mMaxIteration);
commit();
mService = new Service01(mNumberOfResources);
//start new AtomicAction
startTx();
mService.setupOper(true);
mService.doWork(mMaxIteration);
abort();
//test what the final stat values are
if (mStats.numberOfAbortedTransactions() != 1)
{