for (Map.Entry<String, List<Report.Test>> entry : testsByName.entrySet()) {
if (combinedTests.contains(entry.getKey())) {
// do not write TestReportDocument for combined test
continue;
}
TestAggregations ta = new TestAggregations(entry.getKey(), entry.getValue());
TestReportDocument testReport = new TestReportDocument(ta, targetDir, testReportConfig);
try {
testReport.open();
testReport.writeTest();
} catch (IOException e) {