forked from JavaTX/JavaCompilerCore
21 lines
509 B
Java
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");
|
|
}
|
|
|
|
}
|