public void evaluate()

in src/main/java/org/apache/sling/junit/performance/impl/RunExecutionIterationFinishedEvents.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.executionIterationFinished(test.getName(), method.getName()));
        }

        MultipleFailureException.assertEmpty(errors);
    }