* @param mgr - Persistent group manager
* @param count - How many times to manually run PersistenChanGrpMgr
*/
protected void runPersistChanGrpTask(PersistChanGrpMgr mgr, int count) {
PersistChanGrpMgrTask task = new PersistChanGrpMgrTask(mgr, 0);
for (int i = 0; i < count; i++) {
task.performUpdates();
}
}