forked from JavaTX/JavaCompilerCore
15 lines
404 B
Java
15 lines
404 B
Java
package bytecode;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class RunnableTest {
|
|
public final static String rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
|
|
public final static String testFile = "Runnable.jav";
|
|
public final static String outputFile = "Runnable.class";
|
|
|
|
@Test
|
|
public void test() {
|
|
SingleClassTester.compileToBytecode(rootDirectory+testFile, rootDirectory+outputFile);
|
|
}
|
|
}
|