GenTypeTest anfügen

This commit is contained in:
JanUlrich 2015-01-30 15:37:27 +01:00
parent 1369161f12
commit a549843f05
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,4 @@
class Test<A>{
A a;
b = a;
}

View File

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