diff --git a/test/plugindevelopment/TypeInsertTests/GenTypeTest.jav b/test/plugindevelopment/TypeInsertTests/GenTypeTest.jav new file mode 100644 index 000000000..36b7de8d4 --- /dev/null +++ b/test/plugindevelopment/TypeInsertTests/GenTypeTest.jav @@ -0,0 +1,4 @@ +class Test{ + A a; + b = a; +} \ No newline at end of file diff --git a/test/plugindevelopment/TypeInsertTests/GenTypeTest.java b/test/plugindevelopment/TypeInsertTests/GenTypeTest.java new file mode 100644 index 000000000..e150b2dd5 --- /dev/null +++ b/test/plugindevelopment/TypeInsertTests/GenTypeTest.java @@ -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 mustContain = new Vector(); + + mustContain.add("A b"); + MultipleTypesInsertTester.test(this.TEST_FILE, mustContain); + } + +}