public static void writeReport()

in base/src/main/java/org/apache/sling/performance/ReportLogger.java [125:134]


    public static void writeReport(String testSuiteName, String testCaseName, String className, String methodName,
                                   DescriptiveStatistics statistics, ReportType reportType, PerformanceRunner.ReportLevel reportLevel) throws Exception {
        switch (reportType) {
            case TXT:
                writeReportTxt(testSuiteName, testCaseName, className, methodName, statistics, reportLevel);
                break;
            default:
                throw new Exception("The specified reporting format is not yet supported");
        }
    }