protected Statement withAfterPerformanceIterations()

in src/main/java/org/apache/sling/junit/performance/runner/PerformanceRunner.java [260:268]


    protected Statement withAfterPerformanceIterations(FrameworkMethod method, Object test, Statement next) {
        List<FrameworkMethod> methods = getTestClass().getAnnotatedMethods(AfterPerformanceIteration.class);

        if (methods.size() == 0) {
            return next;
        }

        return new RunAfters(next, methods, test);
    }