f1.setLastModified(System.currentTimeMillis());
File f3 = new File(repo.getWorkingDir(), "file3");
f3.setLastModified(System.currentTimeMillis());
//
HgStatusCommand cmd = new HgStatusCommand(repo);
cmd.all();
StatusCollector sc = new StatusCollector();
cmd.execute(sc);
// shall pass without exception
//
for (Map.Entry<Path, Outcome> e : sc.getErrors().entrySet()) {