KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > java > editor > completion > NormalCCTests


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.test.java.editor.completion;
21
22 /**
23  *
24  * @author jp159440
25  */

26 public class NormalCCTests extends CompletionTestPerformer{
27     
28     /** Creates a new instance of NormalCCTests */
29     public NormalCCTests(String JavaDoc name) {
30         super(name);
31     }
32     
33     public void testarrayunsorted() throws Exception JavaDoc {
34         new CompletionTest().test(outputWriter, logWriter, "int[] a; a.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
35     }
36     
37     public void testcommonunsorted() throws Exception JavaDoc {
38         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
39     }
40     
41     public void testtypecastunsorted() throws Exception JavaDoc {
42         new CompletionTest().test(outputWriter, logWriter, "Object a = new Integer(1);((Integer) a.getClass()).", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
43     }
44     
45     public void testarrayIIunsorted() throws Exception JavaDoc {
46         new CompletionTest().test(outputWriter, logWriter, "String[] a = new String[10]; a[\"test\".length()].", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
47     }
48     
49     public void testinsideunsorted() throws Exception JavaDoc {
50         new CompletionTest().test(outputWriter, logWriter, "java.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
51     }
52     
53     public void testcomplexunsorted() throws Exception JavaDoc {
54         new CompletionTest().test(outputWriter, logWriter, "Class.forName(\"\").getConstructor(new Class[] {}).", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
55     }
56     
57     public void testoutterIunsorted() throws Exception JavaDoc {
58         new CompletionTest().test(outputWriter, logWriter, "InnerOutter.this.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/InnerOutter.java", 20);
59     }
60     
61     public void testoutterIIunsorted() throws Exception JavaDoc {
62         new CompletionTest().test(outputWriter, logWriter, "Innerer.this.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/InnerOutter.java", 20);
63     }
64     
65     public void testequalSignIunsorted() throws Exception JavaDoc {
66         new CompletionTest().test(outputWriter, logWriter, "String x; x = ", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/TestFile.java", 20);
67     }
68     
69     public void testfirstArgumentunsorted() throws Exception JavaDoc {
70         new CompletionTest().test(outputWriter, logWriter, "first.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/ArgumentTest.java", 14);
71     }
72     
73     public void testsecondArgumentunsorted() throws Exception JavaDoc {
74         new CompletionTest().test(outputWriter, logWriter, "second.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/ArgumentTest.java", 14);
75     }
76     
77     public void testthirdArgumentunsorted() throws Exception JavaDoc {
78         new CompletionTest().test(outputWriter, logWriter, "third.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/ArgumentTest.java", 14);
79     }
80     
81     public void testfourthArgumentunsorted() throws Exception JavaDoc {
82         new CompletionTest().test(outputWriter, logWriter, "fourth.", false, getDataDir(), "cp-prj-1", "org/netbeans/test/editor/completion/ArgumentTest.java", 14);
83     }
84     
85     public void testjdk15CCTest1iunsorted() throws Exception JavaDoc {
86         new CompletionTest().test(outputWriter, logWriter, " private static List<java.lang.", false, getDataDir(), "CC15Tests", "test1/CCTest1i.java", 7);
87     }
88     
89     public void testjdk15CCTest1iiunsorted() throws Exception JavaDoc {
90         new CompletionTest().test(outputWriter, logWriter, " l = new ArrayList<java.lang.", false, getDataDir(), "CC15Tests", "test1/CCTest1ii.java", 10);
91     }
92     
93     public void testjdk15CCTest1iiiunsorted() throws Exception JavaDoc {
94         new CompletionTest().test(outputWriter, logWriter, " l.add", false, getDataDir(), "CC15Tests", "test1/CCTest1iii.java", 12);
95     }
96     
97     public void testjdk15CCTest1ivunsorted() throws Exception JavaDoc {
98         new CompletionTest().test(outputWriter, logWriter, " l.get", false, getDataDir(), "CC15Tests", "test1/CCTest1iv.java", 14);
99     }
100     
101     public void testjdk15CCTest1vunsorted() throws Exception JavaDoc {
102         new CompletionTest().test(outputWriter, logWriter, " l.get(0).", false, getDataDir(), "CC15Tests", "test1/CCTest1v.java", 14);
103     }
104     
105     public void testjdk15CCTest2iunsorted() throws Exception JavaDoc {
106         new CompletionTest().test(outputWriter, logWriter, " List<java.lang.", false, getDataDir(), "CC15Tests", "test2/CCTest2i.java", 9);
107     }
108     
109     public void testjdk15CCTest2iiunsorted() throws Exception JavaDoc {
110         new CompletionTest().test(outputWriter, logWriter, " l = new ArrayList<java.lang.", false, getDataDir(), "CC15Tests", "test2/CCTest2ii.java", 11);
111     }
112     
113     public void testjdk15CCTest2iiiunsorted() throws Exception JavaDoc {
114         new CompletionTest().test(outputWriter, logWriter, " l.add", false, getDataDir(), "CC15Tests", "test2/CCTest2iii.java", 13);
115     }
116     
117     public void testjdk15CCTest2ivunsorted() throws Exception JavaDoc {
118         new CompletionTest().test(outputWriter, logWriter, " l.get", false, getDataDir(), "CC15Tests", "test2/CCTest2iv.java", 15);
119     }
120     
121     public void testjdk15CCTest2vunsorted() throws Exception JavaDoc {
122         new CompletionTest().test(outputWriter, logWriter, " l.get(0).", false, getDataDir(), "CC15Tests", "test2/CCTest2v.java", 15);
123     }
124     
125     public void testjdk15CCTest11iunsorted() throws Exception JavaDoc {
126         new CompletionTest().test(outputWriter, logWriter, " private static List<java.lang.", false, getDataDir(), "CC15Tests", "test11/CCTest11i.java", 4);
127     }
128     
129     public void testjdk15CCTest11iiunsorted() throws Exception JavaDoc {
130         new CompletionTest().test(outputWriter, logWriter, " l = new List<java.lang.", false, getDataDir(), "CC15Tests", "test11/CCTest11ii.java", 7);
131     }
132     
133     public void testjdk15CCTest11iiiunsorted() throws Exception JavaDoc {
134         new CompletionTest().test(outputWriter, logWriter, " l.add", false, getDataDir(), "CC15Tests", "test11/CCTest11iii.java", 9);
135     }
136     
137     public void testjdk15CCTest11ivunsorted() throws Exception JavaDoc {
138         new CompletionTest().test(outputWriter, logWriter, " l.get", false, getDataDir(), "CC15Tests", "test11/CCTest11iv.java", 11);
139     }
140     
141     public void testjdk15CCTest11vunsorted() throws Exception JavaDoc {
142         new CompletionTest().test(outputWriter, logWriter, " l.get(0).", false, getDataDir(), "CC15Tests", "test11/CCTest11v.java", 11);
143     }
144     
145     public void testjdk15CCTest12iunsorted() throws Exception JavaDoc {
146         new CompletionTest().test(outputWriter, logWriter, " private static List<java.lang.", false, getDataDir(), "CC15Tests", "test12/CCTest12i.java", 4);
147     }
148     
149     public void testjdk15CCTest12iiunsorted() throws Exception JavaDoc {
150         new CompletionTest().test(outputWriter, logWriter, " l = new List<java.lang.", false, getDataDir(), "CC15Tests", "test12/CCTest12ii.java", 7);
151     }
152     
153     public void testjdk15CCTest12iiiunsorted() throws Exception JavaDoc {
154         new CompletionTest().test(outputWriter, logWriter, " l.add", false, getDataDir(), "CC15Tests", "test12/CCTest12iii.java", 9);
155     }
156     
157     public void testjdk15CCTest12ivunsorted() throws Exception JavaDoc {
158         new CompletionTest().test(outputWriter, logWriter, " l.get", false, getDataDir(), "CC15Tests", "test12/CCTest12iv.java", 11);
159     }
160     
161     public void testjdk15CCTest12vunsorted() throws Exception JavaDoc {
162         new CompletionTest().test(outputWriter, logWriter, " l.get(0).", false, getDataDir(), "CC15Tests", "test12/CCTest12v.java", 11);
163     }
164     
165     public void testjdk15CCTest13iunsorted() throws Exception JavaDoc {
166         new CompletionTest().test(outputWriter, logWriter, " private static List<java.lang.", false, getDataDir(), "CC15Tests", "test13/CCTest13i.java", 4);
167     }
168     
169     public void testjdk15CCTest13iiunsorted() throws Exception JavaDoc {
170         new CompletionTest().test(outputWriter, logWriter, " l = new List<java.lang.", false, getDataDir(), "CC15Tests", "test13/CCTest13ii.java", 7);
171     }
172     
173     public void testjdk15CCTest13iiiunsorted() throws Exception JavaDoc {
174         new CompletionTest().test(outputWriter, logWriter, " l.add", false, getDataDir(), "CC15Tests", "test13/CCTest13iii.java", 9);
175     }
176     
177     public void testjdk15CCTest13ivunsorted() throws Exception JavaDoc {
178         new CompletionTest().test(outputWriter, logWriter, " l.get", false, getDataDir(), "CC15Tests", "test13/CCTest13iv.java", 11);
179     }
180     
181     public void testjdk15CCTest13vunsorted() throws Exception JavaDoc {
182         new CompletionTest().test(outputWriter, logWriter, " l.get(0).", false, getDataDir(), "CC15Tests", "test13/CCTest13v.java", 11);
183     }
184     
185     public void testjdk15CCTest14iunsorted() throws Exception JavaDoc {
186         new CompletionTest().test(outputWriter, logWriter, " List<java.lang.", false, getDataDir(), "CC15Tests", "test14/CCTest14i.java", 6);
187     }
188     
189     public void testjdk15CCTest14iiunsorted() throws Exception JavaDoc {
190         new CompletionTest().test(outputWriter, logWriter, " l = new List<java.lang.", false, getDataDir(), "CC15Tests", "test14/CCTest14ii.java", 8);
191     }
192     
193     public void testjdk15CCTest14iiiunsorted() throws Exception JavaDoc {
194         new CompletionTest().test(outputWriter, logWriter, " l.add", false, getDataDir(), "CC15Tests", "test14/CCTest14iii.java", 10);
195     }
196     
197     public void testjdk15CCTest14ivunsorted() throws Exception JavaDoc {
198         new CompletionTest().test(outputWriter, logWriter, " l.get", false, getDataDir(), "CC15Tests", "test14/CCTest14iv.java", 12);
199     }
200     
201     public void testjdk15CCTest14vunsorted() throws Exception JavaDoc {
202         new CompletionTest().test(outputWriter, logWriter, " l.get(0).", false, getDataDir(), "CC15Tests", "test14/CCTest14v.java", 12);
203     }
204     
205     public void testjdk15CCTest3iunsorted() throws Exception JavaDoc {
206         new CompletionTest().test(outputWriter, logWriter, "", false, getDataDir(), "CC15Tests", "test3/CCTest3i.java", 16);
207     }
208     
209     public void testjdk15CCTest3iiunsorted() throws Exception JavaDoc {
210         new CompletionTest().test(outputWriter, logWriter, " s.", false, getDataDir(), "CC15Tests", "test3/CCTest3i.java", 16);
211     }
212     
213     public void testjdk15CCTest4aiunsorted() throws Exception JavaDoc {
214         new CompletionTest().test(outputWriter, logWriter, "import ", false, getDataDir(), "CC15Tests", "test4/CCTest4ai.java", 4);
215     }
216     
217     public void testjdk15CCTest4aiiunsorted() throws Exception JavaDoc {
218         new CompletionTest().test(outputWriter, logWriter, "import j", false, getDataDir(), "CC15Tests", "test4/CCTest4ai.java", 4);
219     }
220     
221     public void testjdk15CCTest4aiiiunsorted() throws Exception JavaDoc {
222         new CompletionTest().test(outputWriter, logWriter, "import java.", false, getDataDir(), "CC15Tests", "test4/CCTest4ai.java", 4);
223     }
224     
225     public void testjdk15CCTest4aivunsorted() throws Exception JavaDoc {
226         new CompletionTest().test(outputWriter, logWriter, "import java.util.Lis", false, getDataDir(), "CC15Tests", "test4/CCTest4ai.java", 4);
227     }
228     
229     public void testjdk15CCTest4avunsorted() throws Exception JavaDoc {
230         new CompletionTest().test(outputWriter, logWriter, "import java.util.List.", false, getDataDir(), "CC15Tests", "test4/CCTest4ai.java", 4);
231     }
232     
233     public void testjdk15CCTest4biunsorted() throws Exception JavaDoc {
234         new CompletionTest().test(outputWriter, logWriter, " int x = TEST_FIELD", false, getDataDir(), "CC15Tests", "test4/CCTest4bi.java", 9);
235     }
236     
237     public void testjdk15CCTest4biiunsorted() throws Exception JavaDoc {
238         new CompletionTest().test(outputWriter, logWriter, " testMethod", false, getDataDir(), "CC15Tests", "test4/CCTest4bii.java", 11);
239     }
240     
241     public void testjdk15CCTest4biiiunsorted() throws Exception JavaDoc {
242         new CompletionTest().test(outputWriter, logWriter, " testMethod().get(0).", false, getDataDir(), "CC15Tests", "test4/CCTest4biii.java", 11);
243     }
244     
245     public void testjdk15CCTest4bivunsorted() throws Exception JavaDoc {
246         new CompletionTest().test(outputWriter, logWriter, "import static ", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
247     }
248     
249     public void testjdk15CCTest4bvunsorted() throws Exception JavaDoc {
250         new CompletionTest().test(outputWriter, logWriter, "import static t", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
251     }
252     
253     public void testjdk15CCTest4bviunsorted() throws Exception JavaDoc {
254         new CompletionTest().test(outputWriter, logWriter, "import static test4.", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
255     }
256     
257     public void testjdk15CCTest4bviiunsorted() throws Exception JavaDoc {
258         new CompletionTest().test(outputWriter, logWriter, "import static test4.CCTest", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
259     }
260     
261     public void testjdk15CCTest4bviiiunsorted() throws Exception JavaDoc {
262         new CompletionTest().test(outputWriter, logWriter, "import static test4.CCTest4a.", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
263     }
264     
265     public void testjdk15CCTest4bixunsorted() throws Exception JavaDoc {
266         new CompletionTest().test(outputWriter, logWriter, "import static test4.CCTest4a.T", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
267     }
268     
269     public void testjdk15CCTest4bxunsorted() throws Exception JavaDoc {
270         new CompletionTest().test(outputWriter, logWriter, "import static test4.CCTest4a.t", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
271     }
272     
273     public void testjdk15CCTest4bxiunsorted() throws Exception JavaDoc {
274         new CompletionTest().test(outputWriter, logWriter, "import test4.CCTest4a.", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
275     }
276     
277     public void testjdk15CCTest4bxiiunsorted() throws Exception JavaDoc {
278         new CompletionTest().test(outputWriter, logWriter, "import test4.CCTest4a.I", false, getDataDir(), "CC15Tests", "test4/CCTest4biv.java", 4);
279     }
280     
281     public void testjdk15CCTest5biunsorted() throws Exception JavaDoc {
282         new CompletionTest().test(outputWriter, logWriter, " int x = TEST_FIELD", false, getDataDir(), "CC15Tests", "test5/CCTest5bi.java", 8);
283     }
284     
285     public void testjdk15CCTest5biiunsorted() throws Exception JavaDoc {
286         new CompletionTest().test(outputWriter, logWriter, " testMethod", false, getDataDir(), "CC15Tests", "test5/CCTest5bii.java", 10);
287     }
288     
289     public void testjdk15CCTest5biiiunsorted() throws Exception JavaDoc {
290         new CompletionTest().test(outputWriter, logWriter, " testMethod().get(0).", false, getDataDir(), "CC15Tests", "test5/CCTest5biii.java", 10);
291     }
292     
293     public void testjdk15CCTest5cunsorted() throws Exception JavaDoc {
294         new CompletionTest().test(outputWriter, logWriter, " new Inner(", false, getDataDir(), "CC15Tests", "test5/CCTest5c.java", 8);
295     }
296     
297     public void testjdk15CCTest6iunsorted() throws Exception JavaDoc {
298         new CompletionTest().test(outputWriter, logWriter, " t.test", false, getDataDir(), "CC15Tests", "test6/CCTest6i.java", 8);
299     }
300     
301     public void testjdk15CCTest6iiunsorted() throws Exception JavaDoc {
302         new CompletionTest().test(outputWriter, logWriter, " permanent.", false, getDataDir(), "CC15Tests", "test6/CCTest6ii.java", 12);
303     }
304     
305     public void testjdk15CCTest6iiiunsorted() throws Exception JavaDoc {
306         new CompletionTest().test(outputWriter, logWriter, " int dummy = variable.", false, getDataDir(), "CC15Tests", "test6/CCTest6iii.java", 14);
307     }
308     
309     public void testjdk15CCTest6ivunsorted() throws Exception JavaDoc {
310         new CompletionTest().test(outputWriter, logWriter, " variable[0].", false, getDataDir(), "CC15Tests", "test6/CCTest6iv.java", 16);
311     }
312     
313     public void testjdk15CCTest6vunsorted() throws Exception JavaDoc {
314         new CompletionTest().test(outputWriter, logWriter, " t.test(", false, getDataDir(), "CC15Tests", "test6/CCTest6i.java", 8);
315     }
316     
317     public void testjdk15CCTest6viunsorted() throws Exception JavaDoc {
318         new CompletionTest().test(outputWriter, logWriter, " t.test(\"Hello\",", false, getDataDir(), "CC15Tests", "test6/CCTest6i.java", 8);
319     }
320     
321     public void testjdk15CCTest6viiunsorted() throws Exception JavaDoc {
322         new CompletionTest().test(outputWriter, logWriter, " t.test(\"Hello\", \"Hello\",", false, getDataDir(), "CC15Tests", "test6/CCTest6i.java", 8);
323     }
324     
325     public void testjdk15CCTest6biunsorted() throws Exception JavaDoc {
326         new CompletionTest().test(outputWriter, logWriter, " t.test", false, getDataDir(), "CC15Tests", "test6/CCTest6b.java", 7);
327     }
328     
329     public void testjdk15CCTest6biiunsorted() throws Exception JavaDoc {
330         new CompletionTest().test(outputWriter, logWriter, " t.test(1, ", false, getDataDir(), "CC15Tests", "test6/CCTest6b.java", 7);
331     }
332     
333     public void testjdk15CCTest6biiiunsorted() throws Exception JavaDoc {
334         new CompletionTest().test(outputWriter, logWriter, " t.test(\"aaa\", ", false, getDataDir(), "CC15Tests", "test6/CCTest6b.java", 7);
335     }
336     
337     public void testjdk15CCTest6bivunsorted() throws Exception JavaDoc {
338         new CompletionTest().test(outputWriter, logWriter, " t.test(\"aaa\", \"bbb\", ", false, getDataDir(), "CC15Tests", "test6/CCTest6b.java", 7);
339     }
340     
341     public void testjdk15CCTest6bvunsorted() throws Exception JavaDoc {
342         new CompletionTest().test(outputWriter, logWriter, " t.test(\"aaa\", null, ", false, getDataDir(), "CC15Tests", "test6/CCTest6b.java", 7);
343     }
344     
345     public void testjdk15CCTest6bviunsorted() throws Exception JavaDoc {
346         new CompletionTest().test(outputWriter, logWriter, " t.test(null, ", false, getDataDir(), "CC15Tests", "test6/CCTest6b.java", 7);
347     }
348     
349     public void testjdk15CCTest7aiunsorted() throws Exception JavaDoc {
350         new CompletionTest().test(outputWriter, logWriter, " permanent.", false, getDataDir(), "CC15Tests", "test7/CCTest7ai.java", 6);
351     }
352     
353     public void testjdk15CCTest7aiiunsorted() throws Exception JavaDoc {
354         new CompletionTest().test(outputWriter, logWriter, " int dummy = variable.", false, getDataDir(), "CC15Tests", "test7/CCTest7aii.java", 8);
355     }
356     
357     public void testjdk15CCTest7aiiiunsorted() throws Exception JavaDoc {
358         new CompletionTest().test(outputWriter, logWriter, " variable[0].", false, getDataDir(), "CC15Tests", "test7/CCTest7aiii.java", 10);
359     }
360     
361     public void testjdk15CCTest7aivunsorted() throws Exception JavaDoc {
362         new CompletionTest().test(outputWriter, logWriter, " permanent.", false, getDataDir(), "CC15Tests", "test7/CCTest7aiv.java", 14);
363     }
364     
365     public void testjdk15CCTest7avunsorted() throws Exception JavaDoc {
366         new CompletionTest().test(outputWriter, logWriter, " int dummy = variable.", false, getDataDir(), "CC15Tests", "test7/CCTest7av.java", 16);
367     }
368     
369     public void testjdk15CCTest7aviunsorted() throws Exception JavaDoc {
370         new CompletionTest().test(outputWriter, logWriter, " variable[0].", false, getDataDir(), "CC15Tests", "test7/CCTest7avi.java", 18);
371     }
372     
373     public void testjdk15CCTest7biunsorted() throws Exception JavaDoc {
374         new CompletionTest().test(outputWriter, logWriter, " t.test", false, getDataDir(), "CC15Tests", "test7/CCTest7bi.java", 10);
375     }
376     
377     public void testjdk15CCTest7biiunsorted() throws Exception JavaDoc {
378         new CompletionTest().test(outputWriter, logWriter, " testStatic", false, getDataDir(), "CC15Tests", "test7/CCTest7bii.java", 11);
379     }
380     
381     public void testjdk15CCTest8iunsorted() throws Exception JavaDoc {
382         new CompletionTest().test(outputWriter, logWriter, " InnerEnum", false, getDataDir(), "CC15Tests", "test8/CCTest8i.java", 6);
383     }
384     
385     public void testjdk15CCTest8iiunsorted() throws Exception JavaDoc {
386         new CompletionTest().test(outputWriter, logWriter, " e = InnerEnum.", false, getDataDir(), "CC15Tests", "test8/CCTest8ii.java", 8);
387     }
388     
389     public void testjdk15CCTest8iiiunsorted() throws Exception JavaDoc {
390         new CompletionTest().test(outputWriter, logWriter, " InnerEnum x = e.", false, getDataDir(), "CC15Tests", "test8/CCTest8iii.java", 10);
391     }
392     
393     public void testjdk15CCTest9biunsorted() throws Exception JavaDoc {
394         new CompletionTest().test(outputWriter, logWriter, " CCTest9a", false, getDataDir(), "CC15Tests", "test9/CCTest9bi.java", 6);
395     }
396     
397     public void testjdk15CCTest9biiunsorted() throws Exception JavaDoc {
398         new CompletionTest().test(outputWriter, logWriter, " e = CCTest9a.", false, getDataDir(), "CC15Tests", "test9/CCTest9bii.java", 8);
399     }
400     
401     public void testjdk15CCTest9biiiunsorted() throws Exception JavaDoc {
402         new CompletionTest().test(outputWriter, logWriter, " CCTest9a x = e.", false, getDataDir(), "CC15Tests", "test9/CCTest9biii.java", 10);
403     }
404     
405     public void testjdk15CCTest9ciunsorted() throws Exception JavaDoc {
406         new CompletionTest().test(outputWriter, logWriter, " case ", false, getDataDir(), "CC15Tests", "test9/CCTest9c.java", 10);
407     }
408     
409     public void testjdk15CCTest9ciiunsorted() throws Exception JavaDoc {
410         new CompletionTest().test(outputWriter, logWriter, " case ", false, getDataDir(), "CC15Tests", "test9/CCTest9c.java", 13);
411     }
412     
413     public void testjdk15CCTest9ciiiunsorted() throws Exception JavaDoc {
414         new CompletionTest().test(outputWriter, logWriter, " case A", false, getDataDir(), "CC15Tests", "test9/CCTest9c.java", 13);
415     }
416     
417     public void testjdk15CCTest9civunsorted() throws Exception JavaDoc {
418         new CompletionTest().test(outputWriter, logWriter, " case ", false, getDataDir(), "CC15Tests", "test9/CCTest9c.java", 15);
419     }
420     
421     public void testjdk15CCTest10biunsorted() throws Exception JavaDoc {
422         new CompletionTest().test(outputWriter, logWriter, " CCTest9a", false, getDataDir(), "CC15Tests", "test10/CCTest10bi.java", 8);
423     }
424     
425     public void testjdk15CCTest10biiunsorted() throws Exception JavaDoc {
426         new CompletionTest().test(outputWriter, logWriter, " e = CCTest9a.", false, getDataDir(), "CC15Tests", "test10/CCTest10bii.java", 10);
427     }
428     
429     public void testjdk15CCTest10biiiunsorted() throws Exception JavaDoc {
430         new CompletionTest().test(outputWriter, logWriter, " CCTest9a x = e.", false, getDataDir(), "CC15Tests", "test10/CCTest10biii.java", 12);
431     }
432     
433     public void testjdk15GenericsTestiunsorted() throws Exception JavaDoc {
434         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTesti.java", 6);
435     }
436     
437     public void testjdk15GenericsTestiiunsorted() throws Exception JavaDoc {
438         new CompletionTest().test(outputWriter, logWriter, " param.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTesti.java", 6);
439     }
440     
441     public void testjdk15GenericsTestiiiunsorted() throws Exception JavaDoc {
442         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 10);
443     }
444     
445     public void testjdk15GenericsTestivunsorted() throws Exception JavaDoc {
446         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<Int", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 10);
447     }
448     
449     public void testjdk15GenericsTestvunsorted() throws Exception JavaDoc {
450         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<Integer, ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 10);
451     }
452     
453     public void testjdk15GenericsTestviunsorted() throws Exception JavaDoc {
454         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<Integer, ArithmeticException, ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 10);
455     }
456     
457     public void testjdk15GenericsTestviiunsorted() throws Exception JavaDoc {
458         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<?, ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
459     }
460     
461     public void testjdk15GenericsTestviiiunsorted() throws Exception JavaDoc {
462         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<? extends Number, ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
463     }
464     
465     public void testjdk15GenericsTestixunsorted() throws Exception JavaDoc {
466         new CompletionTest().test(outputWriter, logWriter, " MyGenericsTest<? super Number, ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
467     }
468     
469     public void testjdk15GenericsTestxunsorted() throws Exception JavaDoc {
470         new CompletionTest().test(outputWriter, logWriter, " genericstest.MyGenericClass<", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
471     }
472     
473     public void testjdk15GenericsTestxiunsorted() throws Exception JavaDoc {
474         new CompletionTest().test(outputWriter, logWriter, " genericstest.MyGenericClass<java.lang.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
475     }
476     
477     public void testjdk15GenericsTestxiiunsorted() throws Exception JavaDoc {
478         new CompletionTest().test(outputWriter, logWriter, " genericstest.MyGenericClass<java.lang.L", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
479     }
480     
481     public void testjdk15GenericsTestxiiiunsorted() throws Exception JavaDoc {
482         new CompletionTest().test(outputWriter, logWriter, " genericstest.MyGenericClass<java.lang.Long, ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
483     }
484     
485     public void testjdk15GenericsTestxivunsorted() throws Exception JavaDoc {
486         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
487     }
488     
489     public void testjdk15GenericsTestxvunsorted() throws Exception JavaDoc {
490         new CompletionTest().test(outputWriter, logWriter, " mgt.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
491     }
492     
493     public void testjdk15GenericsTestxviunsorted() throws Exception JavaDoc {
494         new CompletionTest().test(outputWriter, logWriter, " mc.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
495     }
496     
497     public void testjdk15GenericsTestxviiunsorted() throws Exception JavaDoc {
498         new CompletionTest().test(outputWriter, logWriter, " mcl.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
499     }
500     
501     public void testjdk15GenericsTestxviiiunsorted() throws Exception JavaDoc {
502         new CompletionTest().test(outputWriter, logWriter, " mci.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
503     }
504     
505     public void testjdk15GenericsTestxixunsorted() throws Exception JavaDoc {
506         new CompletionTest().test(outputWriter, logWriter, " mcgi.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
507     }
508     
509     public void testjdk15GenericsTestxxunsorted() throws Exception JavaDoc {
510         new CompletionTest().test(outputWriter, logWriter, " mcsi.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
511     }
512     
513     public void testjdk15GenericsTestxxiunsorted() throws Exception JavaDoc {
514         new CompletionTest().test(outputWriter, logWriter, " mcdgi.", false, getDataDir(), "CC15Tests", "genericstest/MyGenericsTestiii.java", 17);
515     }
516     
517     public void testjdk15AccessControlTestiunsorted() throws Exception JavaDoc {
518         new CompletionTest().test(outputWriter, logWriter, " accesscontroltest.points.", false, getDataDir(), "CC15Tests", "accesscontroltest/points/Test.java", 7);
519     }
520     
521     public void testjdk15AccessControlTestiiunsorted() throws Exception JavaDoc {
522         new CompletionTest().test(outputWriter, logWriter, " accesscontroltest.points.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Test.java", 5);
523     }
524     
525     public void testjdk15AccessControlTestiiiunsorted() throws Exception JavaDoc {
526         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/PlusPoint.java", 5);
527     }
528     
529     public void testjdk15AccessControlTestivunsorted() throws Exception JavaDoc {
530         new CompletionTest().test(outputWriter, logWriter, " super.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/PlusPoint.java", 5);
531     }
532     
533     public void testjdk15AccessControlTestvunsorted() throws Exception JavaDoc {
534         new CompletionTest().test(outputWriter, logWriter, " a.", false, getDataDir(), "CC15Tests", "accesscontroltest/points/Point.java", 9);
535     }
536     
537     public void testjdk15AccessControlTestviunsorted() throws Exception JavaDoc {
538         new CompletionTest().test(outputWriter, logWriter, " p.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 8);
539     }
540     
541     public void testjdk15AccessControlTestviiunsorted() throws Exception JavaDoc {
542         new CompletionTest().test(outputWriter, logWriter, " this.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 8);
543     }
544     
545     public void testjdk15AccessControlTestviiiunsorted() throws Exception JavaDoc {
546         new CompletionTest().test(outputWriter, logWriter, " q.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 11);
547     }
548     
549     public void testjdk15AccessControlTestixunsorted() throws Exception JavaDoc {
550         new CompletionTest().test(outputWriter, logWriter, " this.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 11);
551     }
552     
553     public void testjdk15AccessControlTestxunsorted() throws Exception JavaDoc {
554         new CompletionTest().test(outputWriter, logWriter, " r.", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 15);
555     }
556     
557     public void testjdk15AccessControlTestxiunsorted() throws Exception JavaDoc {
558         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 15);
559     }
560     
561     public void testjdk15AccessControlTestxiiunsorted() throws Exception JavaDoc {
562         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "accesscontroltest/points/Test.java", 7);
563     }
564     
565     public void testjdk15AccessControlTestxiiiunsorted() throws Exception JavaDoc {
566         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "accesscontroltest/morepoints/Point3d.java", 20);
567     }
568     
569     public void testjdk15LocalVarsTestiunsorted() throws Exception JavaDoc {
570         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 6);
571     }
572     
573     public void testjdk15LocalVarsTestiiunsorted() throws Exception JavaDoc {
574         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 8);
575     }
576     
577     public void testjdk15LocalVarsTestiiiunsorted() throws Exception JavaDoc {
578         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 10);
579     }
580     
581     public void testjdk15LocalVarsTestivunsorted() throws Exception JavaDoc {
582         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 13);
583     }
584     
585     public void testjdk15LocalVarsTestvunsorted() throws Exception JavaDoc {
586         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 16);
587     }
588     
589     public void testjdk15LocalVarsTestviunsorted() throws Exception JavaDoc {
590         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 18);
591     }
592     
593     public void testjdk15LocalVarsTestviiunsorted() throws Exception JavaDoc {
594         new CompletionTest().test(outputWriter, logWriter, " ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 20);
595     }
596     
597     public void testjdk15LocalVarsTestviiiunsorted() throws Exception JavaDoc {
598         new CompletionTest().test(outputWriter, logWriter, " if (", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 10);
599     }
600     
601     public void testjdk15LocalVarsTestixunsorted() throws Exception JavaDoc {
602         new CompletionTest().test(outputWriter, logWriter, " if (i < ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 10);
603     }
604     
605     public void testjdk15LocalVarsTestxunsorted() throws Exception JavaDoc {
606         new CompletionTest().test(outputWriter, logWriter, " args[i].", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 10);
607     }
608     
609     public void testjdk15LocalVarsTestxiunsorted() throws Exception JavaDoc {
610         new CompletionTest().test(outputWriter, logWriter, " for(int j = 0; ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 20);
611     }
612     
613     public void testjdk15LocalVarsTestxiiunsorted() throws Exception JavaDoc {
614         new CompletionTest().test(outputWriter, logWriter, " for(int j = 0; j < 10; j++) ", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 20);
615     }
616     
617     public void testjdk15LocalVarsTestxiiiunsorted() throws Exception JavaDoc {
618         new CompletionTest().test(outputWriter, logWriter, " ((String[])objs)[0].", false, getDataDir(), "CC15Tests", "localvarstest/Test.java", 25);
619     }
620     
621     public void testjdk15ArraysTestiunsorted() throws Exception JavaDoc {
622         new CompletionTest().test(outputWriter, logWriter, " args.", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
623     }
624     
625     public void testjdk15ArraysTestiiunsorted() throws Exception JavaDoc {
626         new CompletionTest().test(outputWriter, logWriter, " args[0].", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
627     }
628     
629     public void testjdk15ArraysTestiiiunsorted() throws Exception JavaDoc {
630         new CompletionTest().test(outputWriter, logWriter, " new String[0].", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
631     }
632     
633     public void testjdk15ArraysTestivunsorted() throws Exception JavaDoc {
634         new CompletionTest().test(outputWriter, logWriter, " new String[] {\"one\", \"two\"}.", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
635     }
636     
637     public void testjdk15ArraysTestvunsorted() throws Exception JavaDoc {
638         new CompletionTest().test(outputWriter, logWriter, " new String[] {\"one\", \"two\"}[0].", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
639     }
640     
641     public void testjdk15ArraysTestviunsorted() throws Exception JavaDoc {
642         new CompletionTest().test(outputWriter, logWriter, " Test.this.testArray[2].", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 15);
643     }
644     
645     public void testjdk15ArraysTestviiunsorted() throws Exception JavaDoc {
646         new CompletionTest().test(outputWriter, logWriter, " testString.", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 17);
647     }
648     
649     public void testjdk15ArraysTestviiiunsorted() throws Exception JavaDoc {
650         new CompletionTest().test(outputWriter, logWriter, " Test.this.oneString.", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 17);
651     }
652     
653     public void testjdk15ArraysTestixunsorted() throws Exception JavaDoc {
654         new CompletionTest().test(outputWriter, logWriter, " ((String)objs[0]).", false, getDataDir(), "CC15Tests", "arraystest/Test.java", 24);
655     }
656     
657     public void testjdk15ConstructorsTestiunsorted() throws Exception JavaDoc {
658         new CompletionTest().test(outputWriter, logWriter, " new NoCtor(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
659     }
660     
661     public void testjdk15ConstructorsTestiiunsorted() throws Exception JavaDoc {
662         new CompletionTest().test(outputWriter, logWriter, " new DefaultCtor(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
663     }
664     
665     public void testjdk15ConstructorsTestiiiunsorted() throws Exception JavaDoc {
666         new CompletionTest().test(outputWriter, logWriter, " new CopyCtor(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
667     }
668     
669     public void testjdk15ConstructorsTestivunsorted() throws Exception JavaDoc {
670         new CompletionTest().test(outputWriter, logWriter, " new MoreCtors(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
671     }
672     
673     public void testjdk15ConstructorsTestvunsorted() throws Exception JavaDoc {
674         new CompletionTest().test(outputWriter, logWriter, " new GenericNoCtor<Long>(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
675     }
676     
677     public void testjdk15ConstructorsTestviunsorted() throws Exception JavaDoc {
678         new CompletionTest().test(outputWriter, logWriter, " new GenericDefaultCtor<Long>(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
679     }
680     
681     public void testjdk15ConstructorsTestviiunsorted() throws Exception JavaDoc {
682         new CompletionTest().test(outputWriter, logWriter, " new GenericCopyCtor<Long>(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
683     }
684     
685     public void testjdk15ConstructorsTestviiiunsorted() throws Exception JavaDoc {
686         new CompletionTest().test(outputWriter, logWriter, " new GenericMoreCtors<Long>(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
687     }
688     
689     public void testjdk15ConstructorsTestixunsorted() throws Exception JavaDoc {
690         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 53);
691     }
692     
693     public void testjdk15ConstructorsTestxunsorted() throws Exception JavaDoc {
694         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 59);
695     }
696     
697     public void testjdk15ConstructorsTestxiiunsorted() throws Exception JavaDoc {
698         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 65);
699     }
700     
701     public void testjdk15ConstructorsTestxiiiunsorted() throws Exception JavaDoc {
702         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 71);
703     }
704     
705     public void testjdk15ConstructorsTestxivunsorted() throws Exception JavaDoc {
706         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 77);
707     }
708     
709     public void testjdk15ConstructorsTestxvunsorted() throws Exception JavaDoc {
710         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 83);
711     }
712     
713     public void testjdk15ConstructorsTestxviunsorted() throws Exception JavaDoc {
714         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 89);
715     }
716     
717     public void testjdk15ConstructorsTestxviiunsorted() throws Exception JavaDoc {
718         new CompletionTest().test(outputWriter, logWriter, " super(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 95);
719     }
720     
721     public void testjdk15ConstructorsTestxviiiunsorted() throws Exception JavaDoc {
722         new CompletionTest().test(outputWriter, logWriter, " new ArrayList<String[]>(", false, getDataDir(), "CC15Tests", "ctorstest/Test.java", 6);
723     }
724     
725 }
726
Popular Tags