private void validateListenMethodPublic()

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


    private void validateListenMethodPublic(List<Throwable> errors) {
        for (FrameworkMethod method : getTestClass().getAnnotatedMethods(Listen.class)) {
            if (method.isPublic()) {
                continue;
            }

            errors.add(new Error("Method " + method.getName() + "() should be public"));
        }
    }