forked from JavaTX/JavaCompilerCore
Test angefügt. Neues Problem: Nicht alle Generischen Variablen werden eingesetzt
This commit is contained in:
parent
64d01e8ee2
commit
183d8f43ee
3
test/plugindevelopment/TypeInsertTests/LambdaTest7.jav
Normal file
3
test/plugindevelopment/TypeInsertTests/LambdaTest7.jav
Normal file
@ -0,0 +1,3 @@
|
||||
class Test7{
|
||||
void testMethode(a){}
|
||||
}
|
18
test/plugindevelopment/TypeInsertTests/LambdaTest7.java
Normal file
18
test/plugindevelopment/TypeInsertTests/LambdaTest7.java
Normal file
@ -0,0 +1,18 @@
|
||||
package plugindevelopment.TypeInsertTests;
|
||||
|
||||
import java.util.Vector;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class LambdaTest7 {
|
||||
|
||||
private static final String TEST_FILE = "LambdaTest7.jav";
|
||||
|
||||
@Test
|
||||
public void run(){
|
||||
Vector<String> mustContain = new Vector<String>();
|
||||
mustContain.add("A a");
|
||||
MultipleTypesInsertTester.test(this.TEST_FILE, mustContain);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user