Neuer Testfall angefügt

This commit is contained in:
JanUlrich 2014-10-09 12:01:41 +02:00
parent 26f35cfeb6
commit 4e394ae12c
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import java.util.Vector;
class ImportGeneric {
m (Vector<Integer> x) {
return x.elementAt(1);
}
}

View File

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