Configuration params = new Configuration();
params.put(new PropertySimple("param1", "group-test"));
params.put(new PropertySimple("param2", "blah"));
// let the trigger not fire until several seconds from now so we can query the schedule itself
Trigger trigger = new SimpleTrigger(PREFIX + "triggername", PREFIX + "triggergroup", new Date(
System.currentTimeMillis() + 3600000L));
GroupOperationSchedule schedule = operationManager.scheduleGroupOperation(overlord(), newGroup.getId(), null,
true, PREFIX + "testOp", params, trigger, PREFIX + "desc");
assert schedule != null;
assert schedule.getDescription().equals(PREFIX + "desc");