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