Output path printed to console
This commit is contained in:
@@ -104,8 +104,10 @@ public class TestGenerator {
|
|||||||
p.popIndent();
|
p.popIndent();
|
||||||
p.println("}");
|
p.println("}");
|
||||||
|
|
||||||
String testSourceFilePath = baseDir + suiteClassPackage.replace(".", "/") + "/" + suiteClassName + ".java";
|
String testSourceFilePath = baseDir + "/" + suiteClassPackage.replace(".", "/") + "/" + suiteClassName + ".java";
|
||||||
FileUtil.writeToFile(new File(testSourceFilePath), out.toString());
|
File testSourceFile = new File(testSourceFilePath);
|
||||||
|
FileUtil.writeToFile(testSourceFile, out.toString());
|
||||||
|
System.out.println("Output written to file:\n" + testSourceFile.getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void generateSuiteAnnotations(Printer p) {
|
private void generateSuiteAnnotations(Printer p) {
|
||||||
|
|||||||
Reference in New Issue
Block a user