192193194195196197198199200201
getReportService().generateReportsFor(testOutcomes); } private ReportService getReportService() { if (reportService == null) { reportService = new ReportService(getOutputDirectory(), getDefaultReporters()); } return reportService; }
78910111213
* Provide supporting methods for creating report listeners and generating reports. */ public class ThucydidesReports { public static ReportService getReportService(Configuration systemConfiguration) { return new ReportService(systemConfiguration.getOutputDirectory(), ReportService.getDefaultReporters()); }
365366367368369370371372373
return webdriverManager; } private ReportService getReportService() { if (reportService == null) { reportService = new ReportService(getOutputDirectory(), getDefaultReporters()); } return reportService; }
7273747576777879
stepFactory = new StepFactory(pages); } else { stepFactory = new StepFactory(); } registerStepListeners(additionalListeners); reportService = new ReportService(outputDirectory, ReportService.getDefaultReporters()); }