Test anfügen

This commit is contained in:
JanUlrich 2017-12-13 13:34:22 +01:00
parent fd8df92c03
commit 5e675b9a93
2 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class JavaTXCompilerTest {
@Test
public void test() throws IOException, java.lang.ClassNotFoundException {
System.out.println(rootDirectory);
String fileName = "VoidMeth";
String fileName = "RecursiveMeth";
filesToTest.add(new File(rootDirectory+fileName+".jav"));
System.out.println(rootDirectory+fileName+".jav");
JavaTXCompiler compiler = new JavaTXCompiler(filesToTest);

View File

@ -0,0 +1,5 @@
public class VoidMeth{
public Integer test(){
return this.test();
}
}