2421dd0222
jetzt korrekt modified: ../../test/bytecode/Tph2Test.java jetzt korrekt modified: ../../test/bytecode/TphTest.java jetzt korrekt modified: ../../test/bytecode/applyLambdaTest.java jetzt korrekt modified: ../../test/bytecode/javFiles/Tph.jav Rueckgabewert veraendert
40 lines
1.3 KiB
Java
40 lines
1.3 KiB
Java
package bytecode;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import java.io.File;
|
|
import java.lang.reflect.Method;
|
|
import java.net.URL;
|
|
import java.net.URLClassLoader;
|
|
|
|
import org.junit.Test;
|
|
|
|
import de.dhbwstuttgart.core.JavaTXCompiler;
|
|
|
|
public class applyLambdaTest {
|
|
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/applyLambda.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("applyLambda");
|
|
instanceOfClass = classToTest.getDeclaredConstructor().newInstance();
|
|
|
|
Method m = classToTest.getDeclaredMethod("m");
|
|
Object result = m.invoke(instanceOfClass);
|
|
|
|
assertEquals(result.getClass(), loader.loadClass("Apply"));
|
|
}
|
|
}
|