forked from JavaTX/JavaCompilerCore
16 lines
265 B
Java
Executable File
16 lines
265 B
Java
Executable File
package mycompiler.test;
|
|
|
|
import junit.framework.Test;
|
|
import junit.framework.TestSuite;
|
|
|
|
|
|
public class LambdaInterferenzTest {
|
|
|
|
public static Test suite() {
|
|
|
|
TestSuite suite = new TestSuite("Test for 'Complete Typeinference in Java 8'");
|
|
|
|
return suite;
|
|
}
|
|
}
|