21 lines
466 B
Java
21 lines
466 B
Java
package bytecode;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class Matrix_lambdaTest3 extends SourceFileBytecodeTest{
|
|
@Override
|
|
protected void init() {
|
|
testName = "Matrix_lambda3";
|
|
rootDirectory = System.getProperty("user.dir")+"/test/bytecode/";
|
|
}
|
|
|
|
@Test
|
|
public void testConstruct() throws Exception{
|
|
ClassLoader classLoader = getClassLoader();
|
|
|
|
Class cls = classLoader.loadClass(testName);
|
|
|
|
Object obj = cls.newInstance();
|
|
assertTrue(true);
|
|
}
|
|
} |