storeObjects(tx, getNewODMGZoos("testUserRollbackWithCheckpoint", 10));
// now we store objects to DB
tx.checkpoint();
storeObjects(tx, getNewProjects("testUserRollbackWithCheckpoint", 10));
//we abort tx, all actions after the last checkpoint call should be rollback
tx.abort();
int odmgZoosAfter = getDBObjectCountWithNewPB(ODMGZoo.class);
int projectsAfter = getDBObjectCountWithNewPB(Project.class);
int odmgZoosAfterOQL = getDBObjectCountViaOqlQueryUseNewTransaction(odmg, ODMGZoo.class);
int projectsAfterOQL = getDBObjectCountViaOqlQueryUseNewTransaction(odmg, Project.class);