in src/main/java/org/apache/sling/junit/performance/impl/RunExecutionFinishedEvents.java [46:58]
public void evaluate() throws Throwable {
List<Throwable> errors = new ArrayList<Throwable>();
try {
statement.evaluate();
} catch (Throwable t) {
errors.add(t);
} finally {
errors.addAll(listeners.executionFinished(test.getName(), method.getName()));
}
MultipleFailureException.assertEmpty(errors);
}