package bytecode; import static org.junit.Assert.*; import java.io.File; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.net.URL; import java.net.URLClassLoader; import org.junit.BeforeClass; import org.junit.Test; import de.dhbwstuttgart.core.JavaTXCompiler; public class FieldTph2Test { private static String path; private static File fileToTest; private static JavaTXCompiler compiler; private static ClassLoader loader; private static Class classToTest; private static String pathToClassFile; private static Object instanceOfClass; @BeforeClass public static void setUpBeforeClass() throws Exception { path = System.getProperty("user.dir")+"/test/bytecode/javFiles/FieldTph2.jav"; fileToTest = new File(path); compiler = new JavaTXCompiler(fileToTest); compiler.generateBytecode(System.getProperty("user.dir")+"/testBytecode/generatedBC/"); pathToClassFile = System.getProperty("user.dir")+"/testBytecode/generatedBC/"; loader = new URLClassLoader(new URL[] {new URL("file://"+pathToClassFile)}); classToTest = loader.loadClass("FieldTph2"); instanceOfClass = classToTest.getDeclaredConstructor().newInstance(); } @Test public void test() throws Exception { Field a = classToTest.getDeclaredField("a"); a.setAccessible(true); Method m2 = classToTest.getDeclaredMethod("m2", Object.class); m2.invoke(instanceOfClass, 1); Method m = classToTest.getDeclaredMethod("m", Object.class); Object result = m.invoke(instanceOfClass, 1); assertEquals(1,result); } }