use of com.avaloq.tools.ddk.test.ui.swtbot.SwtWizardBot in project dsl-devkit by dsldevkit.
the class CheckCatalogWizardTest method setUp.
/**
* Start again the Check project wizard before every test.
* <p>
* Initializes this test class pre-loading grammar access instances, which might involve bundle activation and class loading.
* </p>
*/
@Before
public void setUp() {
wizard = new SwtWizardBot();
project = createProject();
for (Grammar g : new CheckResourceUtil().getGrammars()) {
// make sure all grammars accessible for combo field.
g.getName();
}
}
use of com.avaloq.tools.ddk.test.ui.swtbot.SwtWizardBot in project dsl-devkit by dsldevkit.
the class CheckProjectWizardTest method setUp.
/**
* Start again the Check project wizard before every test.
*/
@Before
public void setUp() {
wizard = new SwtWizardBot();
wizard.openNewWizard(CHECK_PROJECT_WIZARD_NAME);
}
Aggregations