Test angefügt. Neues Problem: Nicht alle Generischen Variablen werden eingesetzt

This commit is contained in:
JanUlrich 2014-04-26 18:30:25 +02:00
parent 64d01e8ee2
commit 183d8f43ee
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,3 @@
class Test7{
void testMethode(a){}
}

View 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);
}
}