package bytecode;

import org.junit.Ignore;
import org.junit.Test;

public class ForTest {
	public final static String rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
	public final static String testFile = "ForTest.jav";
	public final static String outputFile = "ForTest.class";
	
	@Test
	@Ignore
	public void test() {
		SingleClassTester.compileToBytecode(rootDirectory+testFile, rootDirectory+outputFile);
	}
}