in src/main/org/apache/ant/antunit/junit3/AntUnitTestCase.java [121:131]
public void run(TestResult result) {
if (initialisationException==null && suite!=null) {
//normal case, the test is executed from the suite
suite.runTest(this, result);
} else {
//special case, the suite failed to be created
//the execution will be handled by this object
//directly
super.run(result);
}
}