Test added

This commit is contained in:
JanUlrich 2014-08-05 16:58:26 +02:00
parent 0357dd0903
commit c35904d216
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,4 @@
class Matrix2{
<EN, T2, EM extends EN, R extends EM, DF extends T2> Fun1<Fun1<EN, Fun2<R, Matrix2, T2>>, DF> op = (m)->(f)->{return f.apply(this,m);};
}

View File

@ -0,0 +1,16 @@
package plugindevelopment.TypeInsertTests;
import java.util.Vector;
import org.junit.Test;
public class LambdaTest16 {
private static final String TEST_FILE = "LambdaTest16.jav";
@Test
public void run(){
Vector<String> mustContain = new Vector<String>();
//mustContain.add("A a");
MultipleTypesInsertTester.testSingleInsert(this.TEST_FILE, mustContain);
}
}