protected Statement withAfterPerformanceTests()

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


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

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

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