* Make the setup itself run like a test, such that setup errors is
* reported.
*/
public void run(final TestResult result) {
try {
TestHarness testApp = setupHarness();
if (_printInfo) {
testApp.printInfo(System.out, _testBranchs);
} else {
testApp.run(result);
}
} catch (Exception e) {
result.addError(this, e);
}
}