use of com.avaloq.tools.ddk.check.ui.util.CheckResourceUtil 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();
}
}
Aggregations