if (outputLocation != null) {
ExecutorService executor = Executors.newCachedThreadPool();
LOG.info("Writing reports to folder: {} ", outputLocation);
ReportRunner reportExecuter = new ReportRunner(testReportContainer, outputFormats, reportTypes,
outputLocation);
submit = executor.submit(reportExecuter);
} else {
LOG.error("Can't write reports. Report output locatison {} "
+ " can't be created.", rawOutputLocation);