Source Code Cross Referenced for NormalCCTests.java in  » IDE-Netbeans » java » org » netbeans » test » java » editor » completion » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » java » org.netbeans.test.java.editor.completion 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


0001:        /*
0002:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0003:         *
0004:         * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
0005:         *
0006:         * The contents of this file are subject to the terms of either the GNU
0007:         * General Public License Version 2 only ("GPL") or the Common
0008:         * Development and Distribution License("CDDL") (collectively, the
0009:         * "License"). You may not use this file except in compliance with the
0010:         * License. You can obtain a copy of the License at
0011:         * http://www.netbeans.org/cddl-gplv2.html
0012:         * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
0013:         * specific language governing permissions and limitations under the
0014:         * License.  When distributing the software, include this License Header
0015:         * Notice in each file and include the License file at
0016:         * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
0017:         * particular file as subject to the "Classpath" exception as provided
0018:         * by Sun in the GPL Version 2 section of the License file that
0019:         * accompanied this code. If applicable, add the following below the
0020:         * License Header, with the fields enclosed by brackets [] replaced by
0021:         * your own identifying information:
0022:         * "Portions Copyrighted [year] [name of copyright owner]"
0023:         *
0024:         * Contributor(s):
0025:         *
0026:         * The Original Software is NetBeans. The Initial Developer of the Original
0027:         * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
0028:         * Microsystems, Inc. All Rights Reserved.
0029:         *
0030:         * If you wish your version of this file to be governed by only the CDDL
0031:         * or only the GPL Version 2, indicate your decision by adding
0032:         * "[Contributor] elects to include this software in this distribution
0033:         * under the [CDDL or GPL Version 2] license." If you do not indicate a
0034:         * single choice of license, a recipient has the option to distribute
0035:         * your version of this file under either the CDDL, the GPL Version 2 or
0036:         * to extend the choice of license to its licensees as provided above.
0037:         * However, if you add GPL Version 2 code and therefore, elected the GPL
0038:         * Version 2 license, then the option applies only if the new code is
0039:         * made subject to such option by the copyright holder.
0040:         */
0041:
0042:        package org.netbeans.test.java.editor.completion;
0043:
0044:        /**
0045:         *
0046:         * @author jp159440
0047:         */
0048:        public class NormalCCTests extends CompletionTestPerformer {
0049:
0050:            /** Creates a new instance of NormalCCTests */
0051:            public NormalCCTests(String name) {
0052:                super (name);
0053:            }
0054:
0055:            public void testarrayunsorted() throws Exception {
0056:                new CompletionTest()
0057:                        .test(
0058:                                outputWriter,
0059:                                logWriter,
0060:                                "int[] a; a.",
0061:                                false,
0062:                                getDataDir(),
0063:                                "cp-prj-1",
0064:                                "org/netbeans/test/editor/completion/TestFile.java",
0065:                                20);
0066:            }
0067:
0068:            public void testcommonunsorted() throws Exception {
0069:                new CompletionTest()
0070:                        .test(
0071:                                outputWriter,
0072:                                logWriter,
0073:                                " ",
0074:                                false,
0075:                                getDataDir(),
0076:                                "cp-prj-1",
0077:                                "org/netbeans/test/editor/completion/TestFile.java",
0078:                                20);
0079:            }
0080:
0081:            public void testtypecastunsorted() throws Exception {
0082:                new CompletionTest()
0083:                        .test(
0084:                                outputWriter,
0085:                                logWriter,
0086:                                "Object a = new Integer(1);((Integer) a.getClass()).",
0087:                                false,
0088:                                getDataDir(),
0089:                                "cp-prj-1",
0090:                                "org/netbeans/test/editor/completion/TestFile.java",
0091:                                20);
0092:            }
0093:
0094:            public void testarrayIIunsorted() throws Exception {
0095:                new CompletionTest()
0096:                        .test(
0097:                                outputWriter,
0098:                                logWriter,
0099:                                "String[] a = new String[10]; a[\"test\".length()].",
0100:                                false,
0101:                                getDataDir(),
0102:                                "cp-prj-1",
0103:                                "org/netbeans/test/editor/completion/TestFile.java",
0104:                                20);
0105:            }
0106:
0107:            public void testinsideunsorted() throws Exception {
0108:                new CompletionTest()
0109:                        .test(
0110:                                outputWriter,
0111:                                logWriter,
0112:                                "java.",
0113:                                false,
0114:                                getDataDir(),
0115:                                "cp-prj-1",
0116:                                "org/netbeans/test/editor/completion/TestFile.java",
0117:                                20);
0118:            }
0119:
0120:            public void testcomplexunsorted() throws Exception {
0121:                new CompletionTest()
0122:                        .test(
0123:                                outputWriter,
0124:                                logWriter,
0125:                                "Class.forName(\"\").getConstructor(new Class[] {}).",
0126:                                false,
0127:                                getDataDir(),
0128:                                "cp-prj-1",
0129:                                "org/netbeans/test/editor/completion/TestFile.java",
0130:                                20);
0131:            }
0132:
0133:            public void testoutterIunsorted() throws Exception {
0134:                new CompletionTest().test(outputWriter, logWriter,
0135:                        "InnerOutter.this.", false, getDataDir(), "cp-prj-1",
0136:                        "org/netbeans/test/editor/completion/InnerOutter.java",
0137:                        20);
0138:            }
0139:
0140:            public void testoutterIIunsorted() throws Exception {
0141:                new CompletionTest().test(outputWriter, logWriter,
0142:                        "Innerer.this.", false, getDataDir(), "cp-prj-1",
0143:                        "org/netbeans/test/editor/completion/InnerOutter.java",
0144:                        20);
0145:            }
0146:
0147:            public void testequalSignIunsorted() throws Exception {
0148:                new CompletionTest()
0149:                        .test(
0150:                                outputWriter,
0151:                                logWriter,
0152:                                "String x; x = ",
0153:                                false,
0154:                                getDataDir(),
0155:                                "cp-prj-1",
0156:                                "org/netbeans/test/editor/completion/TestFile.java",
0157:                                20);
0158:            }
0159:
0160:            public void testfirstArgumentunsorted() throws Exception {
0161:                new CompletionTest()
0162:                        .test(
0163:                                outputWriter,
0164:                                logWriter,
0165:                                "first.",
0166:                                false,
0167:                                getDataDir(),
0168:                                "cp-prj-1",
0169:                                "org/netbeans/test/editor/completion/ArgumentTest.java",
0170:                                14);
0171:            }
0172:
0173:            public void testsecondArgumentunsorted() throws Exception {
0174:                new CompletionTest()
0175:                        .test(
0176:                                outputWriter,
0177:                                logWriter,
0178:                                "second.",
0179:                                false,
0180:                                getDataDir(),
0181:                                "cp-prj-1",
0182:                                "org/netbeans/test/editor/completion/ArgumentTest.java",
0183:                                14);
0184:            }
0185:
0186:            public void testthirdArgumentunsorted() throws Exception {
0187:                new CompletionTest()
0188:                        .test(
0189:                                outputWriter,
0190:                                logWriter,
0191:                                "third.",
0192:                                false,
0193:                                getDataDir(),
0194:                                "cp-prj-1",
0195:                                "org/netbeans/test/editor/completion/ArgumentTest.java",
0196:                                14);
0197:            }
0198:
0199:            public void testfourthArgumentunsorted() throws Exception {
0200:                new CompletionTest()
0201:                        .test(
0202:                                outputWriter,
0203:                                logWriter,
0204:                                "fourth.",
0205:                                false,
0206:                                getDataDir(),
0207:                                "cp-prj-1",
0208:                                "org/netbeans/test/editor/completion/ArgumentTest.java",
0209:                                14);
0210:            }
0211:
0212:            public void testjdk15CCTest1iunsorted() throws Exception {
0213:                new CompletionTest().test(outputWriter, logWriter,
0214:                        " private static List<java.lang.", false, getDataDir(),
0215:                        "CC15Tests", "test1/CCTest1i.java", 7);
0216:            }
0217:
0218:            public void testjdk15CCTest1iiunsorted() throws Exception {
0219:                new CompletionTest().test(outputWriter, logWriter,
0220:                        " l = new ArrayList<java.lang.", false, getDataDir(),
0221:                        "CC15Tests", "test1/CCTest1ii.java", 10);
0222:            }
0223:
0224:            public void testjdk15CCTest1iiiunsorted() throws Exception {
0225:                new CompletionTest().test(outputWriter, logWriter, " l.add",
0226:                        false, getDataDir(), "CC15Tests",
0227:                        "test1/CCTest1iii.java", 12);
0228:            }
0229:
0230:            public void testjdk15CCTest1ivunsorted() throws Exception {
0231:                new CompletionTest().test(outputWriter, logWriter, " l.get",
0232:                        false, getDataDir(), "CC15Tests",
0233:                        "test1/CCTest1iv.java", 14);
0234:            }
0235:
0236:            public void testjdk15CCTest1vunsorted() throws Exception {
0237:                new CompletionTest().test(outputWriter, logWriter,
0238:                        " l.get(0).", false, getDataDir(), "CC15Tests",
0239:                        "test1/CCTest1v.java", 14);
0240:            }
0241:
0242:            public void testjdk15CCTest2iunsorted() throws Exception {
0243:                new CompletionTest().test(outputWriter, logWriter,
0244:                        " List<java.lang.", false, getDataDir(), "CC15Tests",
0245:                        "test2/CCTest2i.java", 9);
0246:            }
0247:
0248:            public void testjdk15CCTest2iiunsorted() throws Exception {
0249:                new CompletionTest().test(outputWriter, logWriter,
0250:                        " l = new ArrayList<java.lang.", false, getDataDir(),
0251:                        "CC15Tests", "test2/CCTest2ii.java", 11);
0252:            }
0253:
0254:            public void testjdk15CCTest2iiiunsorted() throws Exception {
0255:                new CompletionTest().test(outputWriter, logWriter, " l.add",
0256:                        false, getDataDir(), "CC15Tests",
0257:                        "test2/CCTest2iii.java", 13);
0258:            }
0259:
0260:            public void testjdk15CCTest2ivunsorted() throws Exception {
0261:                new CompletionTest().test(outputWriter, logWriter, " l.get",
0262:                        false, getDataDir(), "CC15Tests",
0263:                        "test2/CCTest2iv.java", 15);
0264:            }
0265:
0266:            public void testjdk15CCTest2vunsorted() throws Exception {
0267:                new CompletionTest().test(outputWriter, logWriter,
0268:                        " l.get(0).", false, getDataDir(), "CC15Tests",
0269:                        "test2/CCTest2v.java", 15);
0270:            }
0271:
0272:            public void testjdk15CCTest11iunsorted() throws Exception {
0273:                new CompletionTest().test(outputWriter, logWriter,
0274:                        " private static List<java.lang.", false, getDataDir(),
0275:                        "CC15Tests", "test11/CCTest11i.java", 4);
0276:            }
0277:
0278:            public void testjdk15CCTest11iiunsorted() throws Exception {
0279:                new CompletionTest().test(outputWriter, logWriter,
0280:                        " l = new List<java.lang.", false, getDataDir(),
0281:                        "CC15Tests", "test11/CCTest11ii.java", 7);
0282:            }
0283:
0284:            public void testjdk15CCTest11iiiunsorted() throws Exception {
0285:                new CompletionTest().test(outputWriter, logWriter, " l.add",
0286:                        false, getDataDir(), "CC15Tests",
0287:                        "test11/CCTest11iii.java", 9);
0288:            }
0289:
0290:            public void testjdk15CCTest11ivunsorted() throws Exception {
0291:                new CompletionTest().test(outputWriter, logWriter, " l.get",
0292:                        false, getDataDir(), "CC15Tests",
0293:                        "test11/CCTest11iv.java", 11);
0294:            }
0295:
0296:            public void testjdk15CCTest11vunsorted() throws Exception {
0297:                new CompletionTest().test(outputWriter, logWriter,
0298:                        " l.get(0).", false, getDataDir(), "CC15Tests",
0299:                        "test11/CCTest11v.java", 11);
0300:            }
0301:
0302:            public void testjdk15CCTest12iunsorted() throws Exception {
0303:                new CompletionTest().test(outputWriter, logWriter,
0304:                        " private static List<java.lang.", false, getDataDir(),
0305:                        "CC15Tests", "test12/CCTest12i.java", 4);
0306:            }
0307:
0308:            public void testjdk15CCTest12iiunsorted() throws Exception {
0309:                new CompletionTest().test(outputWriter, logWriter,
0310:                        " l = new List<java.lang.", false, getDataDir(),
0311:                        "CC15Tests", "test12/CCTest12ii.java", 7);
0312:            }
0313:
0314:            public void testjdk15CCTest12iiiunsorted() throws Exception {
0315:                new CompletionTest().test(outputWriter, logWriter, " l.add",
0316:                        false, getDataDir(), "CC15Tests",
0317:                        "test12/CCTest12iii.java", 9);
0318:            }
0319:
0320:            public void testjdk15CCTest12ivunsorted() throws Exception {
0321:                new CompletionTest().test(outputWriter, logWriter, " l.get",
0322:                        false, getDataDir(), "CC15Tests",
0323:                        "test12/CCTest12iv.java", 11);
0324:            }
0325:
0326:            public void testjdk15CCTest12vunsorted() throws Exception {
0327:                new CompletionTest().test(outputWriter, logWriter,
0328:                        " l.get(0).", false, getDataDir(), "CC15Tests",
0329:                        "test12/CCTest12v.java", 11);
0330:            }
0331:
0332:            public void testjdk15CCTest13iunsorted() throws Exception {
0333:                new CompletionTest().test(outputWriter, logWriter,
0334:                        " private static List<java.lang.", false, getDataDir(),
0335:                        "CC15Tests", "test13/CCTest13i.java", 4);
0336:            }
0337:
0338:            public void testjdk15CCTest13iiunsorted() throws Exception {
0339:                new CompletionTest().test(outputWriter, logWriter,
0340:                        " l = new List<java.lang.", false, getDataDir(),
0341:                        "CC15Tests", "test13/CCTest13ii.java", 7);
0342:            }
0343:
0344:            public void testjdk15CCTest13iiiunsorted() throws Exception {
0345:                new CompletionTest().test(outputWriter, logWriter, " l.add",
0346:                        false, getDataDir(), "CC15Tests",
0347:                        "test13/CCTest13iii.java", 9);
0348:            }
0349:
0350:            public void testjdk15CCTest13ivunsorted() throws Exception {
0351:                new CompletionTest().test(outputWriter, logWriter, " l.get",
0352:                        false, getDataDir(), "CC15Tests",
0353:                        "test13/CCTest13iv.java", 11);
0354:            }
0355:
0356:            public void testjdk15CCTest13vunsorted() throws Exception {
0357:                new CompletionTest().test(outputWriter, logWriter,
0358:                        " l.get(0).", false, getDataDir(), "CC15Tests",
0359:                        "test13/CCTest13v.java", 11);
0360:            }
0361:
0362:            public void testjdk15CCTest14iunsorted() throws Exception {
0363:                new CompletionTest().test(outputWriter, logWriter,
0364:                        " List<java.lang.", false, getDataDir(), "CC15Tests",
0365:                        "test14/CCTest14i.java", 6);
0366:            }
0367:
0368:            public void testjdk15CCTest14iiunsorted() throws Exception {
0369:                new CompletionTest().test(outputWriter, logWriter,
0370:                        " l = new List<java.lang.", false, getDataDir(),
0371:                        "CC15Tests", "test14/CCTest14ii.java", 8);
0372:            }
0373:
0374:            public void testjdk15CCTest14iiiunsorted() throws Exception {
0375:                new CompletionTest().test(outputWriter, logWriter, " l.add",
0376:                        false, getDataDir(), "CC15Tests",
0377:                        "test14/CCTest14iii.java", 10);
0378:            }
0379:
0380:            public void testjdk15CCTest14ivunsorted() throws Exception {
0381:                new CompletionTest().test(outputWriter, logWriter, " l.get",
0382:                        false, getDataDir(), "CC15Tests",
0383:                        "test14/CCTest14iv.java", 12);
0384:            }
0385:
0386:            public void testjdk15CCTest14vunsorted() throws Exception {
0387:                new CompletionTest().test(outputWriter, logWriter,
0388:                        " l.get(0).", false, getDataDir(), "CC15Tests",
0389:                        "test14/CCTest14v.java", 12);
0390:            }
0391:
0392:            public void testjdk15CCTest3iunsorted() throws Exception {
0393:                new CompletionTest().test(outputWriter, logWriter, "", false,
0394:                        getDataDir(), "CC15Tests", "test3/CCTest3i.java", 16);
0395:            }
0396:
0397:            public void testjdk15CCTest3iiunsorted() throws Exception {
0398:                new CompletionTest().test(outputWriter, logWriter, " s.",
0399:                        false, getDataDir(), "CC15Tests",
0400:                        "test3/CCTest3i.java", 16);
0401:            }
0402:
0403:            public void testjdk15CCTest4aiunsorted() throws Exception {
0404:                new CompletionTest().test(outputWriter, logWriter, "import ",
0405:                        false, getDataDir(), "CC15Tests",
0406:                        "test4/CCTest4ai.java", 4);
0407:            }
0408:
0409:            public void testjdk15CCTest4aiiunsorted() throws Exception {
0410:                new CompletionTest().test(outputWriter, logWriter, "import j",
0411:                        false, getDataDir(), "CC15Tests",
0412:                        "test4/CCTest4ai.java", 4);
0413:            }
0414:
0415:            public void testjdk15CCTest4aiiiunsorted() throws Exception {
0416:                new CompletionTest().test(outputWriter, logWriter,
0417:                        "import java.", false, getDataDir(), "CC15Tests",
0418:                        "test4/CCTest4ai.java", 4);
0419:            }
0420:
0421:            public void testjdk15CCTest4aivunsorted() throws Exception {
0422:                new CompletionTest().test(outputWriter, logWriter,
0423:                        "import java.util.Lis", false, getDataDir(),
0424:                        "CC15Tests", "test4/CCTest4ai.java", 4);
0425:            }
0426:
0427:            public void testjdk15CCTest4avunsorted() throws Exception {
0428:                new CompletionTest().test(outputWriter, logWriter,
0429:                        "import java.util.List.", false, getDataDir(),
0430:                        "CC15Tests", "test4/CCTest4ai.java", 4);
0431:            }
0432:
0433:            public void testjdk15CCTest4biunsorted() throws Exception {
0434:                new CompletionTest().test(outputWriter, logWriter,
0435:                        " int x = TEST_FIELD", false, getDataDir(),
0436:                        "CC15Tests", "test4/CCTest4bi.java", 9);
0437:            }
0438:
0439:            public void testjdk15CCTest4biiunsorted() throws Exception {
0440:                new CompletionTest().test(outputWriter, logWriter,
0441:                        " testMethod", false, getDataDir(), "CC15Tests",
0442:                        "test4/CCTest4bii.java", 11);
0443:            }
0444:
0445:            public void testjdk15CCTest4biiiunsorted() throws Exception {
0446:                new CompletionTest().test(outputWriter, logWriter,
0447:                        " testMethod().get(0).", false, getDataDir(),
0448:                        "CC15Tests", "test4/CCTest4biii.java", 11);
0449:            }
0450:
0451:            public void testjdk15CCTest4bivunsorted() throws Exception {
0452:                new CompletionTest().test(outputWriter, logWriter,
0453:                        "import static ", false, getDataDir(), "CC15Tests",
0454:                        "test4/CCTest4biv.java", 4);
0455:            }
0456:
0457:            public void testjdk15CCTest4bvunsorted() throws Exception {
0458:                new CompletionTest().test(outputWriter, logWriter,
0459:                        "import static t", false, getDataDir(), "CC15Tests",
0460:                        "test4/CCTest4biv.java", 4);
0461:            }
0462:
0463:            public void testjdk15CCTest4bviunsorted() throws Exception {
0464:                new CompletionTest().test(outputWriter, logWriter,
0465:                        "import static test4.", false, getDataDir(),
0466:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0467:            }
0468:
0469:            public void testjdk15CCTest4bviiunsorted() throws Exception {
0470:                new CompletionTest().test(outputWriter, logWriter,
0471:                        "import static test4.CCTest", false, getDataDir(),
0472:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0473:            }
0474:
0475:            public void testjdk15CCTest4bviiiunsorted() throws Exception {
0476:                new CompletionTest().test(outputWriter, logWriter,
0477:                        "import static test4.CCTest4a.", false, getDataDir(),
0478:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0479:            }
0480:
0481:            public void testjdk15CCTest4bixunsorted() throws Exception {
0482:                new CompletionTest().test(outputWriter, logWriter,
0483:                        "import static test4.CCTest4a.T", false, getDataDir(),
0484:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0485:            }
0486:
0487:            public void testjdk15CCTest4bxunsorted() throws Exception {
0488:                new CompletionTest().test(outputWriter, logWriter,
0489:                        "import static test4.CCTest4a.t", false, getDataDir(),
0490:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0491:            }
0492:
0493:            public void testjdk15CCTest4bxiunsorted() throws Exception {
0494:                new CompletionTest().test(outputWriter, logWriter,
0495:                        "import test4.CCTest4a.", false, getDataDir(),
0496:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0497:            }
0498:
0499:            public void testjdk15CCTest4bxiiunsorted() throws Exception {
0500:                new CompletionTest().test(outputWriter, logWriter,
0501:                        "import test4.CCTest4a.I", false, getDataDir(),
0502:                        "CC15Tests", "test4/CCTest4biv.java", 4);
0503:            }
0504:
0505:            public void testjdk15CCTest5biunsorted() throws Exception {
0506:                new CompletionTest().test(outputWriter, logWriter,
0507:                        " int x = TEST_FIELD", false, getDataDir(),
0508:                        "CC15Tests", "test5/CCTest5bi.java", 8);
0509:            }
0510:
0511:            public void testjdk15CCTest5biiunsorted() throws Exception {
0512:                new CompletionTest().test(outputWriter, logWriter,
0513:                        " testMethod", false, getDataDir(), "CC15Tests",
0514:                        "test5/CCTest5bii.java", 10);
0515:            }
0516:
0517:            public void testjdk15CCTest5biiiunsorted() throws Exception {
0518:                new CompletionTest().test(outputWriter, logWriter,
0519:                        " testMethod().get(0).", false, getDataDir(),
0520:                        "CC15Tests", "test5/CCTest5biii.java", 10);
0521:            }
0522:
0523:            public void testjdk15CCTest5cunsorted() throws Exception {
0524:                new CompletionTest().test(outputWriter, logWriter,
0525:                        " new Inner(", false, getDataDir(), "CC15Tests",
0526:                        "test5/CCTest5c.java", 8);
0527:            }
0528:
0529:            public void testjdk15CCTest6iunsorted() throws Exception {
0530:                new CompletionTest().test(outputWriter, logWriter, " t.test",
0531:                        false, getDataDir(), "CC15Tests",
0532:                        "test6/CCTest6i.java", 8);
0533:            }
0534:
0535:            public void testjdk15CCTest6iiunsorted() throws Exception {
0536:                new CompletionTest().test(outputWriter, logWriter,
0537:                        " permanent.", false, getDataDir(), "CC15Tests",
0538:                        "test6/CCTest6ii.java", 12);
0539:            }
0540:
0541:            public void testjdk15CCTest6iiiunsorted() throws Exception {
0542:                new CompletionTest().test(outputWriter, logWriter,
0543:                        " int dummy = variable.", false, getDataDir(),
0544:                        "CC15Tests", "test6/CCTest6iii.java", 14);
0545:            }
0546:
0547:            public void testjdk15CCTest6ivunsorted() throws Exception {
0548:                new CompletionTest().test(outputWriter, logWriter,
0549:                        " variable[0].", false, getDataDir(), "CC15Tests",
0550:                        "test6/CCTest6iv.java", 16);
0551:            }
0552:
0553:            public void testjdk15CCTest6vunsorted() throws Exception {
0554:                new CompletionTest().test(outputWriter, logWriter, " t.test(",
0555:                        false, getDataDir(), "CC15Tests",
0556:                        "test6/CCTest6i.java", 8);
0557:            }
0558:
0559:            public void testjdk15CCTest6viunsorted() throws Exception {
0560:                new CompletionTest().test(outputWriter, logWriter,
0561:                        " t.test(\"Hello\",", false, getDataDir(), "CC15Tests",
0562:                        "test6/CCTest6i.java", 8);
0563:            }
0564:
0565:            public void testjdk15CCTest6viiunsorted() throws Exception {
0566:                new CompletionTest().test(outputWriter, logWriter,
0567:                        " t.test(\"Hello\", \"Hello\",", false, getDataDir(),
0568:                        "CC15Tests", "test6/CCTest6i.java", 8);
0569:            }
0570:
0571:            public void testjdk15CCTest6biunsorted() throws Exception {
0572:                new CompletionTest().test(outputWriter, logWriter, " t.test",
0573:                        false, getDataDir(), "CC15Tests",
0574:                        "test6/CCTest6b.java", 7);
0575:            }
0576:
0577:            public void testjdk15CCTest6biiunsorted() throws Exception {
0578:                new CompletionTest().test(outputWriter, logWriter,
0579:                        " t.test(1, ", false, getDataDir(), "CC15Tests",
0580:                        "test6/CCTest6b.java", 7);
0581:            }
0582:
0583:            public void testjdk15CCTest6biiiunsorted() throws Exception {
0584:                new CompletionTest().test(outputWriter, logWriter,
0585:                        " t.test(\"aaa\", ", false, getDataDir(), "CC15Tests",
0586:                        "test6/CCTest6b.java", 7);
0587:            }
0588:
0589:            public void testjdk15CCTest6bivunsorted() throws Exception {
0590:                new CompletionTest().test(outputWriter, logWriter,
0591:                        " t.test(\"aaa\", \"bbb\", ", false, getDataDir(),
0592:                        "CC15Tests", "test6/CCTest6b.java", 7);
0593:            }
0594:
0595:            public void testjdk15CCTest6bvunsorted() throws Exception {
0596:                new CompletionTest().test(outputWriter, logWriter,
0597:                        " t.test(\"aaa\", null, ", false, getDataDir(),
0598:                        "CC15Tests", "test6/CCTest6b.java", 7);
0599:            }
0600:
0601:            public void testjdk15CCTest6bviunsorted() throws Exception {
0602:                new CompletionTest().test(outputWriter, logWriter,
0603:                        " t.test(null, ", false, getDataDir(), "CC15Tests",
0604:                        "test6/CCTest6b.java", 7);
0605:            }
0606:
0607:            public void testjdk15CCTest7aiunsorted() throws Exception {
0608:                new CompletionTest().test(outputWriter, logWriter,
0609:                        " permanent.", false, getDataDir(), "CC15Tests",
0610:                        "test7/CCTest7ai.java", 6);
0611:            }
0612:
0613:            public void testjdk15CCTest7aiiunsorted() throws Exception {
0614:                new CompletionTest().test(outputWriter, logWriter,
0615:                        " int dummy = variable.", false, getDataDir(),
0616:                        "CC15Tests", "test7/CCTest7aii.java", 8);
0617:            }
0618:
0619:            public void testjdk15CCTest7aiiiunsorted() throws Exception {
0620:                new CompletionTest().test(outputWriter, logWriter,
0621:                        " variable[0].", false, getDataDir(), "CC15Tests",
0622:                        "test7/CCTest7aiii.java", 10);
0623:            }
0624:
0625:            public void testjdk15CCTest7aivunsorted() throws Exception {
0626:                new CompletionTest().test(outputWriter, logWriter,
0627:                        " permanent.", false, getDataDir(), "CC15Tests",
0628:                        "test7/CCTest7aiv.java", 14);
0629:            }
0630:
0631:            public void testjdk15CCTest7avunsorted() throws Exception {
0632:                new CompletionTest().test(outputWriter, logWriter,
0633:                        " int dummy = variable.", false, getDataDir(),
0634:                        "CC15Tests", "test7/CCTest7av.java", 16);
0635:            }
0636:
0637:            public void testjdk15CCTest7aviunsorted() throws Exception {
0638:                new CompletionTest().test(outputWriter, logWriter,
0639:                        " variable[0].", false, getDataDir(), "CC15Tests",
0640:                        "test7/CCTest7avi.java", 18);
0641:            }
0642:
0643:            public void testjdk15CCTest7biunsorted() throws Exception {
0644:                new CompletionTest().test(outputWriter, logWriter, " t.test",
0645:                        false, getDataDir(), "CC15Tests",
0646:                        "test7/CCTest7bi.java", 10);
0647:            }
0648:
0649:            public void testjdk15CCTest7biiunsorted() throws Exception {
0650:                new CompletionTest().test(outputWriter, logWriter,
0651:                        " testStatic", false, getDataDir(), "CC15Tests",
0652:                        "test7/CCTest7bii.java", 11);
0653:            }
0654:
0655:            public void testjdk15CCTest8iunsorted() throws Exception {
0656:                new CompletionTest().test(outputWriter, logWriter,
0657:                        " InnerEnum", false, getDataDir(), "CC15Tests",
0658:                        "test8/CCTest8i.java", 6);
0659:            }
0660:
0661:            public void testjdk15CCTest8iiunsorted() throws Exception {
0662:                new CompletionTest().test(outputWriter, logWriter,
0663:                        " e = InnerEnum.", false, getDataDir(), "CC15Tests",
0664:                        "test8/CCTest8ii.java", 8);
0665:            }
0666:
0667:            public void testjdk15CCTest8iiiunsorted() throws Exception {
0668:                new CompletionTest().test(outputWriter, logWriter,
0669:                        " InnerEnum x = e.", false, getDataDir(), "CC15Tests",
0670:                        "test8/CCTest8iii.java", 10);
0671:            }
0672:
0673:            public void testjdk15CCTest9biunsorted() throws Exception {
0674:                new CompletionTest().test(outputWriter, logWriter, " CCTest9a",
0675:                        false, getDataDir(), "CC15Tests",
0676:                        "test9/CCTest9bi.java", 6);
0677:            }
0678:
0679:            public void testjdk15CCTest9biiunsorted() throws Exception {
0680:                new CompletionTest().test(outputWriter, logWriter,
0681:                        " e = CCTest9a.", false, getDataDir(), "CC15Tests",
0682:                        "test9/CCTest9bii.java", 8);
0683:            }
0684:
0685:            public void testjdk15CCTest9biiiunsorted() throws Exception {
0686:                new CompletionTest().test(outputWriter, logWriter,
0687:                        " CCTest9a x = e.", false, getDataDir(), "CC15Tests",
0688:                        "test9/CCTest9biii.java", 10);
0689:            }
0690:
0691:            public void testjdk15CCTest9ciunsorted() throws Exception {
0692:                new CompletionTest().test(outputWriter, logWriter, " case ",
0693:                        false, getDataDir(), "CC15Tests",
0694:                        "test9/CCTest9c.java", 10);
0695:            }
0696:
0697:            public void testjdk15CCTest9ciiunsorted() throws Exception {
0698:                new CompletionTest().test(outputWriter, logWriter, " case ",
0699:                        false, getDataDir(), "CC15Tests",
0700:                        "test9/CCTest9c.java", 13);
0701:            }
0702:
0703:            public void testjdk15CCTest9ciiiunsorted() throws Exception {
0704:                new CompletionTest().test(outputWriter, logWriter, " case A",
0705:                        false, getDataDir(), "CC15Tests",
0706:                        "test9/CCTest9c.java", 13);
0707:            }
0708:
0709:            public void testjdk15CCTest9civunsorted() throws Exception {
0710:                new CompletionTest().test(outputWriter, logWriter, " case ",
0711:                        false, getDataDir(), "CC15Tests",
0712:                        "test9/CCTest9c.java", 15);
0713:            }
0714:
0715:            public void testjdk15CCTest10biunsorted() throws Exception {
0716:                new CompletionTest().test(outputWriter, logWriter, " CCTest9a",
0717:                        false, getDataDir(), "CC15Tests",
0718:                        "test10/CCTest10bi.java", 8);
0719:            }
0720:
0721:            public void testjdk15CCTest10biiunsorted() throws Exception {
0722:                new CompletionTest().test(outputWriter, logWriter,
0723:                        " e = CCTest9a.", false, getDataDir(), "CC15Tests",
0724:                        "test10/CCTest10bii.java", 10);
0725:            }
0726:
0727:            public void testjdk15CCTest10biiiunsorted() throws Exception {
0728:                new CompletionTest().test(outputWriter, logWriter,
0729:                        " CCTest9a x = e.", false, getDataDir(), "CC15Tests",
0730:                        "test10/CCTest10biii.java", 12);
0731:            }
0732:
0733:            public void testjdk15GenericsTestiunsorted() throws Exception {
0734:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0735:                        getDataDir(), "CC15Tests",
0736:                        "genericstest/MyGenericsTesti.java", 6);
0737:            }
0738:
0739:            public void testjdk15GenericsTestiiunsorted() throws Exception {
0740:                new CompletionTest().test(outputWriter, logWriter, " param.",
0741:                        false, getDataDir(), "CC15Tests",
0742:                        "genericstest/MyGenericsTesti.java", 6);
0743:            }
0744:
0745:            public void testjdk15GenericsTestiiiunsorted() throws Exception {
0746:                new CompletionTest().test(outputWriter, logWriter,
0747:                        " MyGenericsTest<", false, getDataDir(), "CC15Tests",
0748:                        "genericstest/MyGenericsTestii.java", 10);
0749:            }
0750:
0751:            public void testjdk15GenericsTestivunsorted() throws Exception {
0752:                new CompletionTest().test(outputWriter, logWriter,
0753:                        " MyGenericsTest<Int", false, getDataDir(),
0754:                        "CC15Tests", "genericstest/MyGenericsTestii.java", 10);
0755:            }
0756:
0757:            public void testjdk15GenericsTestvunsorted() throws Exception {
0758:                new CompletionTest().test(outputWriter, logWriter,
0759:                        " MyGenericsTest<Integer, ", false, getDataDir(),
0760:                        "CC15Tests", "genericstest/MyGenericsTestii.java", 10);
0761:            }
0762:
0763:            public void testjdk15GenericsTestviunsorted() throws Exception {
0764:                new CompletionTest().test(outputWriter, logWriter,
0765:                        " MyGenericsTest<Integer, ArithmeticException, ",
0766:                        false, getDataDir(), "CC15Tests",
0767:                        "genericstest/MyGenericsTestii.java", 10);
0768:            }
0769:
0770:            public void testjdk15GenericsTestviiunsorted() throws Exception {
0771:                new CompletionTest().test(outputWriter, logWriter,
0772:                        " MyGenericsTest<?, ", false, getDataDir(),
0773:                        "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
0774:            }
0775:
0776:            public void testjdk15GenericsTestviiiunsorted() throws Exception {
0777:                new CompletionTest().test(outputWriter, logWriter,
0778:                        " MyGenericsTest<? extends Number, ", false,
0779:                        getDataDir(), "CC15Tests",
0780:                        "genericstest/MyGenericsTestii.java", 13);
0781:            }
0782:
0783:            public void testjdk15GenericsTestixunsorted() throws Exception {
0784:                new CompletionTest().test(outputWriter, logWriter,
0785:                        " MyGenericsTest<? super Number, ", false,
0786:                        getDataDir(), "CC15Tests",
0787:                        "genericstest/MyGenericsTestii.java", 13);
0788:            }
0789:
0790:            public void testjdk15GenericsTestxunsorted() throws Exception {
0791:                new CompletionTest().test(outputWriter, logWriter,
0792:                        " genericstest.MyGenericClass<", false, getDataDir(),
0793:                        "CC15Tests", "genericstest/MyGenericsTestii.java", 13);
0794:            }
0795:
0796:            public void testjdk15GenericsTestxiunsorted() throws Exception {
0797:                new CompletionTest().test(outputWriter, logWriter,
0798:                        " genericstest.MyGenericClass<java.lang.", false,
0799:                        getDataDir(), "CC15Tests",
0800:                        "genericstest/MyGenericsTestii.java", 13);
0801:            }
0802:
0803:            public void testjdk15GenericsTestxiiunsorted() throws Exception {
0804:                new CompletionTest().test(outputWriter, logWriter,
0805:                        " genericstest.MyGenericClass<java.lang.L", false,
0806:                        getDataDir(), "CC15Tests",
0807:                        "genericstest/MyGenericsTestii.java", 13);
0808:            }
0809:
0810:            public void testjdk15GenericsTestxiiiunsorted() throws Exception {
0811:                new CompletionTest().test(outputWriter, logWriter,
0812:                        " genericstest.MyGenericClass<java.lang.Long, ", false,
0813:                        getDataDir(), "CC15Tests",
0814:                        "genericstest/MyGenericsTestii.java", 13);
0815:            }
0816:
0817:            public void testjdk15GenericsTestxivunsorted() throws Exception {
0818:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0819:                        getDataDir(), "CC15Tests",
0820:                        "genericstest/MyGenericsTestiii.java", 17);
0821:            }
0822:
0823:            public void testjdk15GenericsTestxvunsorted() throws Exception {
0824:                new CompletionTest().test(outputWriter, logWriter, " mgt.",
0825:                        false, getDataDir(), "CC15Tests",
0826:                        "genericstest/MyGenericsTestiii.java", 17);
0827:            }
0828:
0829:            public void testjdk15GenericsTestxviunsorted() throws Exception {
0830:                new CompletionTest().test(outputWriter, logWriter, " mc.",
0831:                        false, getDataDir(), "CC15Tests",
0832:                        "genericstest/MyGenericsTestiii.java", 17);
0833:            }
0834:
0835:            public void testjdk15GenericsTestxviiunsorted() throws Exception {
0836:                new CompletionTest().test(outputWriter, logWriter, " mcl.",
0837:                        false, getDataDir(), "CC15Tests",
0838:                        "genericstest/MyGenericsTestiii.java", 17);
0839:            }
0840:
0841:            public void testjdk15GenericsTestxviiiunsorted() throws Exception {
0842:                new CompletionTest().test(outputWriter, logWriter, " mci.",
0843:                        false, getDataDir(), "CC15Tests",
0844:                        "genericstest/MyGenericsTestiii.java", 17);
0845:            }
0846:
0847:            public void testjdk15GenericsTestxixunsorted() throws Exception {
0848:                new CompletionTest().test(outputWriter, logWriter, " mcgi.",
0849:                        false, getDataDir(), "CC15Tests",
0850:                        "genericstest/MyGenericsTestiii.java", 17);
0851:            }
0852:
0853:            public void testjdk15GenericsTestxxunsorted() throws Exception {
0854:                new CompletionTest().test(outputWriter, logWriter, " mcsi.",
0855:                        false, getDataDir(), "CC15Tests",
0856:                        "genericstest/MyGenericsTestiii.java", 17);
0857:            }
0858:
0859:            public void testjdk15GenericsTestxxiunsorted() throws Exception {
0860:                new CompletionTest().test(outputWriter, logWriter, " mcdgi.",
0861:                        false, getDataDir(), "CC15Tests",
0862:                        "genericstest/MyGenericsTestiii.java", 17);
0863:            }
0864:
0865:            public void testjdk15AccessControlTestiunsorted() throws Exception {
0866:                new CompletionTest().test(outputWriter, logWriter,
0867:                        " accesscontroltest.points.", false, getDataDir(),
0868:                        "CC15Tests", "accesscontroltest/points/Test.java", 7);
0869:            }
0870:
0871:            public void testjdk15AccessControlTestiiunsorted() throws Exception {
0872:                new CompletionTest().test(outputWriter, logWriter,
0873:                        " accesscontroltest.points.", false, getDataDir(),
0874:                        "CC15Tests", "accesscontroltest/morepoints/Test.java",
0875:                        5);
0876:            }
0877:
0878:            public void testjdk15AccessControlTestiiiunsorted()
0879:                    throws Exception {
0880:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0881:                        getDataDir(), "CC15Tests",
0882:                        "accesscontroltest/morepoints/PlusPoint.java", 5);
0883:            }
0884:
0885:            public void testjdk15AccessControlTestivunsorted() throws Exception {
0886:                new CompletionTest().test(outputWriter, logWriter, " super.",
0887:                        false, getDataDir(), "CC15Tests",
0888:                        "accesscontroltest/morepoints/PlusPoint.java", 5);
0889:            }
0890:
0891:            public void testjdk15AccessControlTestvunsorted() throws Exception {
0892:                new CompletionTest().test(outputWriter, logWriter, " a.",
0893:                        false, getDataDir(), "CC15Tests",
0894:                        "accesscontroltest/points/Point.java", 9);
0895:            }
0896:
0897:            public void testjdk15AccessControlTestviunsorted() throws Exception {
0898:                new CompletionTest().test(outputWriter, logWriter, " p.",
0899:                        false, getDataDir(), "CC15Tests",
0900:                        "accesscontroltest/morepoints/Point3d.java", 8);
0901:            }
0902:
0903:            public void testjdk15AccessControlTestviiunsorted()
0904:                    throws Exception {
0905:                new CompletionTest().test(outputWriter, logWriter, " this.",
0906:                        false, getDataDir(), "CC15Tests",
0907:                        "accesscontroltest/morepoints/Point3d.java", 8);
0908:            }
0909:
0910:            public void testjdk15AccessControlTestviiiunsorted()
0911:                    throws Exception {
0912:                new CompletionTest().test(outputWriter, logWriter, " q.",
0913:                        false, getDataDir(), "CC15Tests",
0914:                        "accesscontroltest/morepoints/Point3d.java", 11);
0915:            }
0916:
0917:            public void testjdk15AccessControlTestixunsorted() throws Exception {
0918:                new CompletionTest().test(outputWriter, logWriter, " this.",
0919:                        false, getDataDir(), "CC15Tests",
0920:                        "accesscontroltest/morepoints/Point3d.java", 11);
0921:            }
0922:
0923:            public void testjdk15AccessControlTestxunsorted() throws Exception {
0924:                new CompletionTest().test(outputWriter, logWriter, " r.",
0925:                        false, getDataDir(), "CC15Tests",
0926:                        "accesscontroltest/morepoints/Point3d.java", 15);
0927:            }
0928:
0929:            public void testjdk15AccessControlTestxiunsorted() throws Exception {
0930:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0931:                        getDataDir(), "CC15Tests",
0932:                        "accesscontroltest/morepoints/Point3d.java", 15);
0933:            }
0934:
0935:            public void testjdk15AccessControlTestxiiunsorted()
0936:                    throws Exception {
0937:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0938:                        getDataDir(), "CC15Tests",
0939:                        "accesscontroltest/points/Test.java", 7);
0940:            }
0941:
0942:            public void testjdk15AccessControlTestxiiiunsorted()
0943:                    throws Exception {
0944:                new CompletionTest().test(outputWriter, logWriter, " super(",
0945:                        false, getDataDir(), "CC15Tests",
0946:                        "accesscontroltest/morepoints/Point3d.java", 20);
0947:            }
0948:
0949:            public void testjdk15LocalVarsTestiunsorted() throws Exception {
0950:                new CompletionTest()
0951:                        .test(outputWriter, logWriter, " ", false,
0952:                                getDataDir(), "CC15Tests",
0953:                                "localvarstest/Test.java", 6);
0954:            }
0955:
0956:            public void testjdk15LocalVarsTestiiunsorted() throws Exception {
0957:                new CompletionTest()
0958:                        .test(outputWriter, logWriter, " ", false,
0959:                                getDataDir(), "CC15Tests",
0960:                                "localvarstest/Test.java", 8);
0961:            }
0962:
0963:            public void testjdk15LocalVarsTestiiiunsorted() throws Exception {
0964:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0965:                        getDataDir(), "CC15Tests", "localvarstest/Test.java",
0966:                        10);
0967:            }
0968:
0969:            public void testjdk15LocalVarsTestivunsorted() throws Exception {
0970:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0971:                        getDataDir(), "CC15Tests", "localvarstest/Test.java",
0972:                        13);
0973:            }
0974:
0975:            public void testjdk15LocalVarsTestvunsorted() throws Exception {
0976:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0977:                        getDataDir(), "CC15Tests", "localvarstest/Test.java",
0978:                        16);
0979:            }
0980:
0981:            public void testjdk15LocalVarsTestviunsorted() throws Exception {
0982:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0983:                        getDataDir(), "CC15Tests", "localvarstest/Test.java",
0984:                        18);
0985:            }
0986:
0987:            public void testjdk15LocalVarsTestviiunsorted() throws Exception {
0988:                new CompletionTest().test(outputWriter, logWriter, " ", false,
0989:                        getDataDir(), "CC15Tests", "localvarstest/Test.java",
0990:                        20);
0991:            }
0992:
0993:            public void testjdk15LocalVarsTestviiiunsorted() throws Exception {
0994:                new CompletionTest().test(outputWriter, logWriter, " if (",
0995:                        false, getDataDir(), "CC15Tests",
0996:                        "localvarstest/Test.java", 10);
0997:            }
0998:
0999:            public void testjdk15LocalVarsTestixunsorted() throws Exception {
1000:                new CompletionTest().test(outputWriter, logWriter, " if (i < ",
1001:                        false, getDataDir(), "CC15Tests",
1002:                        "localvarstest/Test.java", 10);
1003:            }
1004:
1005:            public void testjdk15LocalVarsTestxunsorted() throws Exception {
1006:                new CompletionTest().test(outputWriter, logWriter, " args[i].",
1007:                        false, getDataDir(), "CC15Tests",
1008:                        "localvarstest/Test.java", 10);
1009:            }
1010:
1011:            public void testjdk15LocalVarsTestxiunsorted() throws Exception {
1012:                new CompletionTest().test(outputWriter, logWriter,
1013:                        " for(int j = 0; ", false, getDataDir(), "CC15Tests",
1014:                        "localvarstest/Test.java", 20);
1015:            }
1016:
1017:            public void testjdk15LocalVarsTestxiiunsorted() throws Exception {
1018:                new CompletionTest().test(outputWriter, logWriter,
1019:                        " for(int j = 0; j < 10; j++) ", false, getDataDir(),
1020:                        "CC15Tests", "localvarstest/Test.java", 20);
1021:            }
1022:
1023:            public void testjdk15LocalVarsTestxiiiunsorted() throws Exception {
1024:                new CompletionTest().test(outputWriter, logWriter,
1025:                        " ((String[])objs)[0].", false, getDataDir(),
1026:                        "CC15Tests", "localvarstest/Test.java", 25);
1027:            }
1028:
1029:            public void testjdk15ArraysTestiunsorted() throws Exception {
1030:                new CompletionTest().test(outputWriter, logWriter, " args.",
1031:                        false, getDataDir(), "CC15Tests",
1032:                        "arraystest/Test.java", 9);
1033:            }
1034:
1035:            public void testjdk15ArraysTestiiunsorted() throws Exception {
1036:                new CompletionTest().test(outputWriter, logWriter, " args[0].",
1037:                        false, getDataDir(), "CC15Tests",
1038:                        "arraystest/Test.java", 9);
1039:            }
1040:
1041:            public void testjdk15ArraysTestiiiunsorted() throws Exception {
1042:                new CompletionTest().test(outputWriter, logWriter,
1043:                        " new String[0].", false, getDataDir(), "CC15Tests",
1044:                        "arraystest/Test.java", 9);
1045:            }
1046:
1047:            public void testjdk15ArraysTestivunsorted() throws Exception {
1048:                new CompletionTest().test(outputWriter, logWriter,
1049:                        " new String[] {\"one\", \"two\"}.", false,
1050:                        getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
1051:            }
1052:
1053:            public void testjdk15ArraysTestvunsorted() throws Exception {
1054:                new CompletionTest().test(outputWriter, logWriter,
1055:                        " new String[] {\"one\", \"two\"}[0].", false,
1056:                        getDataDir(), "CC15Tests", "arraystest/Test.java", 9);
1057:            }
1058:
1059:            public void testjdk15ArraysTestviunsorted() throws Exception {
1060:                new CompletionTest().test(outputWriter, logWriter,
1061:                        " Test.this.testArray[2].", false, getDataDir(),
1062:                        "CC15Tests", "arraystest/Test.java", 15);
1063:            }
1064:
1065:            public void testjdk15ArraysTestviiunsorted() throws Exception {
1066:                new CompletionTest().test(outputWriter, logWriter,
1067:                        " testString.", false, getDataDir(), "CC15Tests",
1068:                        "arraystest/Test.java", 17);
1069:            }
1070:
1071:            public void testjdk15ArraysTestviiiunsorted() throws Exception {
1072:                new CompletionTest().test(outputWriter, logWriter,
1073:                        " Test.this.oneString.", false, getDataDir(),
1074:                        "CC15Tests", "arraystest/Test.java", 17);
1075:            }
1076:
1077:            public void testjdk15ArraysTestixunsorted() throws Exception {
1078:                new CompletionTest().test(outputWriter, logWriter,
1079:                        " ((String)objs[0]).", false, getDataDir(),
1080:                        "CC15Tests", "arraystest/Test.java", 24);
1081:            }
1082:
1083:            public void testjdk15ConstructorsTestiunsorted() throws Exception {
1084:                new CompletionTest().test(outputWriter, logWriter,
1085:                        " new NoCtor(", false, getDataDir(), "CC15Tests",
1086:                        "ctorstest/Test.java", 6);
1087:            }
1088:
1089:            public void testjdk15ConstructorsTestiiunsorted() throws Exception {
1090:                new CompletionTest().test(outputWriter, logWriter,
1091:                        " new DefaultCtor(", false, getDataDir(), "CC15Tests",
1092:                        "ctorstest/Test.java", 6);
1093:            }
1094:
1095:            public void testjdk15ConstructorsTestiiiunsorted() throws Exception {
1096:                new CompletionTest().test(outputWriter, logWriter,
1097:                        " new CopyCtor(", false, getDataDir(), "CC15Tests",
1098:                        "ctorstest/Test.java", 6);
1099:            }
1100:
1101:            public void testjdk15ConstructorsTestivunsorted() throws Exception {
1102:                new CompletionTest().test(outputWriter, logWriter,
1103:                        " new MoreCtors(", false, getDataDir(), "CC15Tests",
1104:                        "ctorstest/Test.java", 6);
1105:            }
1106:
1107:            public void testjdk15ConstructorsTestvunsorted() throws Exception {
1108:                new CompletionTest().test(outputWriter, logWriter,
1109:                        " new GenericNoCtor<Long>(", false, getDataDir(),
1110:                        "CC15Tests", "ctorstest/Test.java", 6);
1111:            }
1112:
1113:            public void testjdk15ConstructorsTestviunsorted() throws Exception {
1114:                new CompletionTest().test(outputWriter, logWriter,
1115:                        " new GenericDefaultCtor<Long>(", false, getDataDir(),
1116:                        "CC15Tests", "ctorstest/Test.java", 6);
1117:            }
1118:
1119:            public void testjdk15ConstructorsTestviiunsorted() throws Exception {
1120:                new CompletionTest().test(outputWriter, logWriter,
1121:                        " new GenericCopyCtor<Long>(", false, getDataDir(),
1122:                        "CC15Tests", "ctorstest/Test.java", 6);
1123:            }
1124:
1125:            public void testjdk15ConstructorsTestviiiunsorted()
1126:                    throws Exception {
1127:                new CompletionTest().test(outputWriter, logWriter,
1128:                        " new GenericMoreCtors<Long>(", false, getDataDir(),
1129:                        "CC15Tests", "ctorstest/Test.java", 6);
1130:            }
1131:
1132:            public void testjdk15ConstructorsTestixunsorted() throws Exception {
1133:                new CompletionTest().test(outputWriter, logWriter, " super(",
1134:                        false, getDataDir(), "CC15Tests",
1135:                        "ctorstest/Test.java", 53);
1136:            }
1137:
1138:            public void testjdk15ConstructorsTestxunsorted() throws Exception {
1139:                new CompletionTest().test(outputWriter, logWriter, " super(",
1140:                        false, getDataDir(), "CC15Tests",
1141:                        "ctorstest/Test.java", 59);
1142:            }
1143:
1144:            public void testjdk15ConstructorsTestxiiunsorted() throws Exception {
1145:                new CompletionTest().test(outputWriter, logWriter, " super(",
1146:                        false, getDataDir(), "CC15Tests",
1147:                        "ctorstest/Test.java", 65);
1148:            }
1149:
1150:            public void testjdk15ConstructorsTestxiiiunsorted()
1151:                    throws Exception {
1152:                new CompletionTest().test(outputWriter, logWriter, " super(",
1153:                        false, getDataDir(), "CC15Tests",
1154:                        "ctorstest/Test.java", 71);
1155:            }
1156:
1157:            public void testjdk15ConstructorsTestxivunsorted() throws Exception {
1158:                new CompletionTest().test(outputWriter, logWriter, " super(",
1159:                        false, getDataDir(), "CC15Tests",
1160:                        "ctorstest/Test.java", 77);
1161:            }
1162:
1163:            public void testjdk15ConstructorsTestxvunsorted() throws Exception {
1164:                new CompletionTest().test(outputWriter, logWriter, " super(",
1165:                        false, getDataDir(), "CC15Tests",
1166:                        "ctorstest/Test.java", 83);
1167:            }
1168:
1169:            public void testjdk15ConstructorsTestxviunsorted() throws Exception {
1170:                new CompletionTest().test(outputWriter, logWriter, " super(",
1171:                        false, getDataDir(), "CC15Tests",
1172:                        "ctorstest/Test.java", 89);
1173:            }
1174:
1175:            public void testjdk15ConstructorsTestxviiunsorted()
1176:                    throws Exception {
1177:                new CompletionTest().test(outputWriter, logWriter, " super(",
1178:                        false, getDataDir(), "CC15Tests",
1179:                        "ctorstest/Test.java", 95);
1180:            }
1181:
1182:            public void testjdk15ConstructorsTestxviiiunsorted()
1183:                    throws Exception {
1184:                new CompletionTest().test(outputWriter, logWriter,
1185:                        " new ArrayList<String[]>(", false, getDataDir(),
1186:                        "CC15Tests", "ctorstest/Test.java", 6);
1187:            }
1188:
1189:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.