in src/main/org/apache/ant/antunit/AntUnitScriptRunner.java [197:211]
private boolean startSuite(AntUnitExecutionNotifier notifier) {
getCurrentProject().fireBuildStarted();
if (hasSuiteSetUp) {
try {
Project newProject = getCleanProject();
newProject.executeTarget(SUITESETUP);
} catch (BuildException e) {
notifier.fireStartTest(SUITESETUP);
fireFailOrError(SUITESETUP, e, notifier);
return false;
}
}
isSuiteStarted = true; //set to true only if suiteSetUp executed properly.
return true;
}