JavaCompilerCore/test/bytecode/IdTest.java
Martin Plümicke 84df9bd354 Id hinzugefuegt
2015-09-23 10:48:55 +02:00

15 lines
386 B
Java

package bytecode;
import org.junit.Test;
public class IdTest {
public final static String rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
public final static String testFile = "Id.jav";
public final static String outputFile = "Id.class";
@Test
public void test() {
SingleClassTester.compileToBytecode(rootDirectory+testFile, rootDirectory+outputFile);
}
}