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