Searched refs:coreContext (Results 1 – 8 of 8) sorted by relevance
/test/testfwk/arkxtest/jsunit/src/ |
D | service.js | 90 function processFunc(coreContext, func) { argument 99 const config = coreContext.getDefaultService('config'); 102 …const isStressTest = (coreContext.getServices('dataDriver') !== undefined || config.getStress() > … 144 const configService = this.coreContext.getDefaultService('config'); 150 …if (typeof this.coreContext.getServices('dataDriver') !== 'undefined' && configService['dryRun'] !… 151 … let suiteStress = this.coreContext.getServices('dataDriver').dataDriver.getSuiteStress(desc); 164 this.currentRunningSuite.beforeAll.push(processFunc(this.coreContext, func)); 168 this.currentRunningSuite.beforeEach.push(processFunc(this.coreContext, func)); 172 this.currentRunningSuite.afterAll.push(processFunc(this.coreContext, func)); 176 this.currentRunningSuite.afterEach.push(processFunc(this.coreContext, func)); [all …]
|
D | event.js | 19 this.coreContext = attr.context; 43 this.suiteContext = attr.coreContext; 67 this.coreContext = attr.coreContext;
|
D | core.js | 120 this.registerEvent('task', new TaskEvent({id: 'default', coreContext: this})); property 121 this.registerEvent('suite', new SuiteEvent({id: 'default', coreContext: this})); property 122 this.registerEvent('spec', new SpecEvent({id: 'default', coreContext: this})); property
|
/test/testfwk/arkxtest/jsunit/src/module/assert/ |
D | ExpectExtend.js | 46 init(coreContext) { argument 47 this.coreContext = coreContext; 49 const expectService = this.coreContext.getDefaultService('expect'); 56 return this.coreContext.getDefaultService('expect').expect(actualValue);
|
/test/testfwk/arkxtest/jsunit/src/module/report/ |
D | OhReport.js | 26 init(coreContext) { argument 27 this.coreContext = coreContext; 28 this.suiteService = this.coreContext.getDefaultService('suite'); 29 this.specService = this.coreContext.getDefaultService('spec'); 44 let config = this.coreContext.getDefaultService('config'); 59 if (this.coreContext.getDefaultService('config').filterValid.length !== 0) { 60 var value = this.coreContext.getDefaultService('config').filterValid;
|
D | ReportExtend.js | 22 init(coreContext) { argument 23 this.coreContext = coreContext; 24 this.suiteService = this.coreContext.getDefaultService('suite');
|
/test/testfwk/arkxtest/jsunit/src/module/config/ |
D | DataDriver.js | 45 init(coreContext) { argument 46 this.coreContext = coreContext; 47 this.suiteService = this.coreContext.getDefaultService('suite'); 48 this.specService = this.coreContext.getDefaultService('spec');
|
D | configService.js | 41 init(coreContext) { argument 42 this.coreContext = coreContext; 228 filterDesc(currentSuiteName, desc, fi, coreContext) { argument
|