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(); }
public void add(SCATestSet testSet) { testSets.put(testSet.getName(), testSet); testSetCount += 1; testCount += testSet.getTestCount(); }