2015-10-13 17:25:51 +00:00
|
|
|
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() {
|
2016-02-18 17:28:08 +00:00
|
|
|
SingleClassTester.compileToBytecode(rootDirectory+testFile, rootDirectory);
|
2015-10-13 17:25:51 +00:00
|
|
|
}
|
|
|
|
}
|