test/jdk/jshell/CommandCompletionTest.java

Print this page

        

*** 56,66 **** assertCompletion("/re|", false, "/reload ", "/reset ", "/retain "); assertCompletion("/h|", false, "/help ", "/history "); } public void testList() { ! test(false, new String[] {"-nostartup"}, a -> assertCompletion(a, "/l|", false, "/list "), a -> assertCompletion(a, "/list |", false, "-all ", "-history ", "-start "), a -> assertCompletion(a, "/list -h|", false, "-history "), a -> assertCompletion(a, "/list q|", false), a -> assertVariable(a, "int", "xray"), --- 56,66 ---- assertCompletion("/re|", false, "/reload ", "/reset ", "/retain "); assertCompletion("/h|", false, "/help ", "/history "); } public void testList() { ! test(false, new String[] {"--no-startup"}, a -> assertCompletion(a, "/l|", false, "/list "), a -> assertCompletion(a, "/list |", false, "-all ", "-history ", "-start "), a -> assertCompletion(a, "/list -h|", false, "-history "), a -> assertCompletion(a, "/list q|", false), a -> assertVariable(a, "int", "xray"),
*** 68,89 **** a -> assertCompletion(a, "/list x|", false, "xray") ); } public void testDrop() { ! test(false, new String[] {"-nostartup"}, a -> assertCompletion(a, "/d|", false, "/drop "), a -> assertClass(a, "class cTest {}", "class", "cTest"), a -> assertMethod(a, "int mTest() { return 0; }", "()I", "mTest"), a -> assertVariable(a, "int", "fTest"), a -> assertCompletion(a, "/drop |", false, "1", "2", "3", "cTest", "fTest", "mTest"), a -> assertCompletion(a, "/drop f|", false, "fTest") ); } public void testEdit() { ! test(false, new String[]{"-nostartup"}, a -> assertCompletion(a, "/e|", false, "/edit ", "/exit "), a -> assertCompletion(a, "/ed|", false, "/edit "), a -> assertClass(a, "class cTest {}", "class", "cTest"), a -> assertMethod(a, "int mTest() { return 0; }", "()I", "mTest"), a -> assertVariable(a, "int", "fTest"), --- 68,89 ---- a -> assertCompletion(a, "/list x|", false, "xray") ); } public void testDrop() { ! test(false, new String[] {"--no-startup"}, a -> assertCompletion(a, "/d|", false, "/drop "), a -> assertClass(a, "class cTest {}", "class", "cTest"), a -> assertMethod(a, "int mTest() { return 0; }", "()I", "mTest"), a -> assertVariable(a, "int", "fTest"), a -> assertCompletion(a, "/drop |", false, "1", "2", "3", "cTest", "fTest", "mTest"), a -> assertCompletion(a, "/drop f|", false, "fTest") ); } public void testEdit() { ! test(false, new String[]{"--no-startup"}, a -> assertCompletion(a, "/e|", false, "/edit ", "/exit "), a -> assertCompletion(a, "/ed|", false, "/edit "), a -> assertClass(a, "class cTest {}", "class", "cTest"), a -> assertMethod(a, "int mTest() { return 0; }", "()I", "mTest"), a -> assertVariable(a, "int", "fTest"),