use of org.btrplace.safeplace.testing.reporting.StoredReport in project scheduler by btrplace.
the class DSN method prettyErrors.
// @Test
public void prettyErrors() throws Exception {
TestScanner sc = newScanner();
Bench.mode = Bench.Mode.REPLAY;
Bench.population = 1000;
Bench.scale = 5;
sc.test(Bench.class).forEach(x -> {
x.reportTo(new StoredReport(Paths.get("xp-dsn", "errors.txt"), r -> !r.result().equals(Result.SUCCESS)));
System.out.println(x.go());
});
}
Aggregations