Made test generation silent.

This commit is contained in:
Evgeny Gerashchenko
2013-07-19 18:09:23 +04:00
parent febed55b36
commit ca3e093e1b
2 changed files with 0 additions and 5 deletions
@@ -127,9 +127,6 @@ public class TestGenerator {
String testSourceFilePath = baseDir + "/" + suiteClassPackage.replace(".", "/") + "/" + suiteClassName + ".java";
File testSourceFile = new File(testSourceFilePath);
FileUtil.writeToFile(testSourceFile, out.toString());
//noinspection UseOfSystemOutOrSystemErr
System.out.println("Output written to file:\n" + testSourceFile.getAbsolutePath());
}
private void generateTestClass(Printer p, TestClassModel testClassModel, boolean isStatic) {
@@ -133,8 +133,6 @@ public class GenerateRangesCodegenTestData {
out.println(" return \"OK\"");
out.println("}");
out.close();
System.out.println("Written to " + file);
}
public static void main(String[] args) {