20 lines
392 B
Java
20 lines
392 B
Java
package bytecode.lambda;
|
|
|
|
import org.junit.Test;
|
|
|
|
import bytecode.SourceFileBytecodeTest;
|
|
|
|
public class SimpleTest extends SourceFileBytecodeTest{
|
|
@Override
|
|
protected void init() {
|
|
testName = "Simple";
|
|
rootDirectory = System.getProperty("user.dir")+"/test/bytecode/lambda/";
|
|
}
|
|
|
|
@Test
|
|
public void testConstruct() throws Exception{
|
|
this.testMethod("main");
|
|
assertTrue(true);
|
|
}
|
|
}
|