langtools/test/jdk/jshell/CompletionSuggestionTest.java
changeset 44814 d008ab12a00a
parent 44066 336ca6c49e10
child 45747 bdf4b1b26697
equal deleted inserted replaced
44813:eac0b6c86a43 44814:d008ab12a00a
   294                 new HashSet<>(Arrays.asList("Entry")),
   294                 new HashSet<>(Arrays.asList("Entry")),
   295                 new HashSet<>(Arrays.asList("class")));
   295                 new HashSet<>(Arrays.asList("class")));
   296     }
   296     }
   297 
   297 
   298     public void testImportStart() {
   298     public void testImportStart() {
   299         assertCompletion("import c|", "com");
   299         assertCompletionIncludesExcludes("import c|", Set.of("com"), Set.of());
   300     }
   300     }
   301 
   301 
   302     public void testBrokenClassFile() throws Exception {
   302     public void testBrokenClassFile() throws Exception {
   303         Compiler compiler = new Compiler();
   303         Compiler compiler = new Compiler();
   304         Path testOutDir = Paths.get("CompletionTestBrokenClassFile");
   304         Path testOutDir = Paths.get("CompletionTestBrokenClassFile");