1 19 package org.netbeans.modules.java.hints; 20 21 25 public class ImportClassEnablerTest extends JavaHintsTestBase { 26 27 28 public ImportClassEnablerTest(String name) { 29 super(name); 30 } 31 32 40 public void testImportHint3() throws Exception { 41 performTest("ImportTest3", "java.util.ArrayList", 9, 13); 42 } 43 44 public void testImportHint4() throws Exception { 45 performTest("ImportTest4", "java.util.Collections", 7, 13); 46 } 47 48 public void testImportHint5() throws Exception { 49 performTest("ImportTest5", "java.util.Map", 7, 13); 50 } 51 52 public void testImportHint6() throws Exception { 53 performTest("ImportTest6", "java.util.Collections", 7, 13); 54 } 55 56 public void testImportHintDoNotPropose() throws Exception { 57 performTestDoNotPerform("ImportHintDoNotPropose", 10, 24); 58 performTestDoNotPerform("ImportHintDoNotPropose", 11, 24); 59 } 60 61 @Override 62 protected String testDataExtension() { 63 return "org/netbeans/test/java/hints/ImportClassEnablerTest/"; 64 } 65 66 } 67 | Popular Tags |