Lines Matching refs:suite
19 this.rootSuite = this.core.getDefaultService("suite").rootSuite;
35 getAllIt(suite) {
36 if (suite.specs.length > 0) {
37 for (var i in suite.specs) {
39 it: suite.specs[i],
40 suite: suite
45 if (suite.childSuites.length > 0) {
46 for (var i in suite.childSuites) {
47 this.getAllIt(suite.childSuites[i]);
74 var res = this.core.getDefaultService("suite").getSummary();
86 lastSuite = it.suite;
93 var suite = it.suite;
94 if (lastSuite !== suite) {
98 suite.runHookFunc('beforeAll');
100 suite.runHookFunc('beforeEach');
102 suite.runHookFunc('afterEach');