forked from JavaTX/JavaCompilerCore
Enrico Schrödter
bcbe82c64e
If, IfElse Implementiert Fehlende Interface Implementierungen mit NotImplementedException hinzugefügt
15 lines
413 B
Java
15 lines
413 B
Java
package bytecode;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class IfStatementTest {
|
|
public final static String rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
|
|
public final static String testFile = "IfStatement.jav";
|
|
public final static String outputFile = "IfStatement.class";
|
|
|
|
@Test
|
|
public void test() {
|
|
SingleClassTester.compileToBytecode(rootDirectory+testFile, rootDirectory+outputFile);
|
|
}
|
|
}
|