// Convert all instances of :: for file support
suiteName = suiteName.replaceAll("::", ".");
if (!reports.containsKey(suiteName))
{
reports.put(suiteName, new Report(new Suite(suiteName)));
}
// Fetch report, add test, and write to disk
Report report = reports.get(suiteName);
report.addTest(test);