FileServices.copySupportFiles(_test.getTestFile(), _outputRootFile);
// Compile the source directory for this test, if not already done
if (!_test.isDirectoryCompiled()) {
verbose("-->Compiling any necessary source files in " + _outputRootFile);
Compiler compiler = new SunJavaCompiler(_outputRootFile);
if (_unitTest.hasJavaSourceVersion()) {
compiler.setJavaSourceVersion(_unitTest.getJavaSourceVersion());
}
try {
compiler.compileDirectory();
_test.setDirectoryCompiled(true);
} catch (CompilationException e) {
if (_printStack) {
e.printStackTrace(System.out);
}