JavaTXCompilerInJavaTX/test/bytecode/Matrix_lambdaTest2.java

21 lines
466 B
Java
Raw Normal View History

2015-09-24 13:26:34 +00:00
package bytecode;
import org.junit.Test;
public class Matrix_lambdaTest2 extends SourceFileBytecodeTest{
@Override
protected void init() {
testName = "Matrix_lambda2";
rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
}
2015-09-24 13:26:34 +00:00
@Test
public void testConstruct() throws Exception{
ClassLoader classLoader = getClassLoader();
Class cls = classLoader.loadClass(testName);
Object obj = cls.newInstance();
assertTrue(true);
2015-09-24 13:26:34 +00:00
}
}