Home
last modified time | relevance | path

Searched refs:coreContext (Results 1 – 8 of 8) sorted by relevance

/test/testfwk/arkxtest/jsunit/src/
Dservice.js90 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 …]
Devent.js19 this.coreContext = attr.context;
43 this.suiteContext = attr.coreContext;
67 this.coreContext = attr.coreContext;
Dcore.js120 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/
DExpectExtend.js46 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/
DOhReport.js26 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;
DReportExtend.js22 init(coreContext) { argument
23 this.coreContext = coreContext;
24 this.suiteService = this.coreContext.getDefaultService('suite');
/test/testfwk/arkxtest/jsunit/src/module/config/
DDataDriver.js45 init(coreContext) { argument
46 this.coreContext = coreContext;
47 this.suiteService = this.coreContext.getDefaultService('suite');
48 this.specService = this.coreContext.getDefaultService('spec');
DconfigService.js41 init(coreContext) { argument
42 this.coreContext = coreContext;
228 filterDesc(currentSuiteName, desc, fi, coreContext) { argument