mgr.begin();
Transaction tx = mgr.getTransaction();
setupTransactions(cache, tx);
SamplePojo pojo = new SamplePojo(21, "test");
cache.put("/one/two", "key1", pojo);
//suspend current transaction
mgr.suspend();
//start a new transaction
mgr.begin();
Transaction tx2 = mgr.getTransaction();
setupTransactions(cache, tx2);
SamplePojo pojo2 = new SamplePojo(21, "test");
cache.put("/one/two", "key2", pojo2);
assertEquals(null, dummy.getCalledCommand());
TransactionTable table = cache.getTransactionTable();