JavaPatternMatching/test/bytecode/stackmaptable/IfStatementTest.java

17 lines
466 B
Java

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