ReportComparator c = new ReportComparator(runResult, runResult2);
RunComparison comp = c.compare();
System.out.println("\n--- comparison result in text ---");
new TextComparisonWriter().write(comp, new PrintWriter(System.out));
System.out.println("========================\n");
System.out.println("\n--- comparison result in html ---");
new HTMLComparisonWriter().write(comp, new PrintWriter(System.out));
//new HTMLComparisonWriter().write(comp, new File("/tmp/HTMLComparison.html"));