public void run()

in src/main/java/org/apache/sling/junit/annotations/SlingAnnotationsTestRunner.java [68:79]


    public void run(RunNotifier notifier){
        try {
            super.run(notifier);
        } finally {
            if (this.top instanceof AnnotationsProcessor) {
                AnnotationsProcessor ap = (AnnotationsProcessor) this.top;
                for (int i=0; i<tests.size(); i++) {
                    ap.cleanupTest(tests.get(i));
                }
            }
        }
    }