UpdateableInt update = new UpdateableInt();
update.fromBytes(masterPrc.fetch(workerOne, 1));
assertEquals(Integer.valueOf(200), update.get());
// Complete
masterPrc.complete(workerOne, progress);
masterPrc.error(workerTwo, "An error occurred");
// Shutdown, expect return code of 1, because we should have one failure
assertEquals(new Integer(1), master.get());
}