protected void execute(
     SCATestSet testSet, ReporterManager reporterManager, ClassLoader classLoader)
     throws ReporterException, TestSetFailedException {
   reporterManager.testSetStarting(new ReportEntry(this, testSet.getName(), "Starting"));
   testSet.execute(reporterManager, classLoader);
   reporterManager.testSetCompleted(new ReportEntry(this, testSet.getName(), "Completed"));
   reporterManager.reset();
 }