forked from JavaTX/JavaCompilerCore
Test added
This commit is contained in:
parent
0357dd0903
commit
c35904d216
4
test/plugindevelopment/TypeInsertTests/LambdaTest16.jav
Normal file
4
test/plugindevelopment/TypeInsertTests/LambdaTest16.jav
Normal 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);};
|
||||
}
|
||||
|
16
test/plugindevelopment/TypeInsertTests/LambdaTest16.java
Normal file
16
test/plugindevelopment/TypeInsertTests/LambdaTest16.java
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user