JavaPatternMatching/test/strucType/Test.java
2017-10-18 17:39:16 +02:00

21 lines
509 B
Java

package strucType;
import static org.junit.Assert.*;
import java.io.File;
import java.io.IOException;
import de.dhbwstuttgart.core.JavaTXCompiler;
public class Test {
public static final String rootDirectory = System.getProperty("user.dir")+"/test/strucType/javFiles/";
@org.junit.Test
public void test() throws ClassNotFoundException, IOException {
JavaTXCompiler compiler = new JavaTXCompiler(new File(rootDirectory + "test.jav"));
System.out.println("test ende");
}
}