public void testPlanExecutionFinished()

in src/main/java/org/apache/sling/junit/impl/servlet/junit5/RunListenerAdapter.java [58:70]


    public void testPlanExecutionFinished(TestPlan testPlan) {
        summarizer.testPlanExecutionFinished(testPlan);

        final TestExecutionSummary summary = summarizer.getSummary();

        final Result result = new ResultAdapter(summary);

        try {
            runListener.testRunFinished(result);
        } catch (Exception exception) {
            throw new RuntimeException(exception);
        }
    }