formatter.setReportFile(report);
final TestResult result = new TestResult();
formatter.startTestSuite(this.getProject().getName());
result.addListener(formatter);
processor.setResult(result);
processor.runSuite();
this.getLog().info("");
this.getLog().info("Results:");
this.getLog().info(formatter.endTestSuite());
if (result.failureCount() > 0 || result.errorCount() > 0)
{