2add9f518c
modified: test/bytecode/FacultyTest.java FacultyTest geaendert. new file: test/bytecode/VectorAddTest.java VectorAddTest hinzugefuegt.
52 lines
1.6 KiB
Java
52 lines
1.6 KiB
Java
package bytecode;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import java.io.File;
|
|
import java.lang.reflect.InvocationTargetException;
|
|
import java.lang.reflect.Method;
|
|
import java.net.URL;
|
|
import java.net.URLClassLoader;
|
|
|
|
import org.junit.Test;
|
|
|
|
import de.dhbwstuttgart.core.JavaTXCompiler;
|
|
|
|
public class FacultyTest {
|
|
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;
|
|
|
|
@Test
|
|
public void generateBC() throws Exception {
|
|
path = System.getProperty("user.dir")+"/test/bytecode/javFiles/Faculty.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("Faculty");
|
|
instanceOfClass = classToTest.getDeclaredConstructor().newInstance();
|
|
|
|
Method m = classToTest.getDeclaredMethod("m", Integer.class);
|
|
// Class<?> lambda = m.invoke(instanceOfClass).getClass();
|
|
// Method apply = lambda.getMethod("apply", Object.class);
|
|
//
|
|
// // Damit man auf die Methode zugreifen kann
|
|
// apply.setAccessible(true);
|
|
|
|
Integer i = 3;
|
|
|
|
// Integer result = (Integer) apply.invoke(m.invoke(instanceOfClass), i);
|
|
Integer result = (Integer) m.invoke(instanceOfClass,i);
|
|
|
|
assertEquals(6, result);
|
|
}
|
|
|
|
|
|
}
|