assertTrue("Scala Console not showing", scalaConsole.isShowing());
// TODO: Same as before, a test for existence would be nice.
JTextPaneOperator theConsole = new JTextPaneOperator(scalaConsole);
assertTrue("Scala Console is not Enabled", theConsole.isEnabled());
theConsole.enterText(":quit");
theConsole.waitComponentShowing(false);
assertFalse("Scala Console still visible, should be closed", theConsole.isShowing());
}
public void testNewScalaProject() {
NewProjectWizardOperator newProjectWizard = NewProjectWizardOperator.invoke();