mgr.begin();
Transaction tx = mgr.getTransaction();
setupTransactions(cache, tx);
SamplePojo pojo = new SamplePojo(21, "test");
Map temp = new HashMap();
temp.put("key1", pojo);
cache.put("/one/two", temp);
//overwrite the map we just put in
SamplePojo pojo2 = new SamplePojo(22, "test");
Map temp2 = new HashMap();
temp2.put("key1", pojo2);
cache.put("/one/two", temp2);
assertEquals(null, dummy.getCalledCommand());