68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
/**
|
|
* Runner
|
|
*
|
|
* @constructor
|
|
* @param {jasmine.Env} env
|
|
*/
|
|
jasmine.Runner = function(env) {
|
|
var self = this;
|
|
self.env = env;
|
|
self.queue = new jasmine.Queue(env);
|
|
self.before_ = [];
|
|
self.after_ = [];
|
|
self.suites_ = [];
|
|
};
|
|
|
|
jasmine.Runner.prototype.execute = function() {
|
|
var self = this;
|
|
if (self.env.reporter.reportRunnerStarting) {
|
|
self.env.reporter.reportRunnerStarting(this);
|
|
}
|
|
self.queue.start(function () {
|
|
self.finishCallback();
|
|
});
|
|
};
|
|
|
|
jasmine.Runner.prototype.beforeEach = function(beforeEachFunction) {
|
|
beforeEachFunction.typeName = 'beforeEach';
|
|
this.before_.push(beforeEachFunction);
|
|
};
|
|
|
|
jasmine.Runner.prototype.afterEach = function(afterEachFunction) {
|
|
afterEachFunction.typeName = 'afterEach';
|
|
this.after_.push(afterEachFunction);
|
|
};
|
|
|
|
|
|
jasmine.Runner.prototype.finishCallback = function() {
|
|
this.env.reporter.reportRunnerResults(this);
|
|
};
|
|
|
|
jasmine.Runner.prototype.addSuite = function(suite) {
|
|
this.suites_.push(suite);
|
|
};
|
|
|
|
jasmine.Runner.prototype.add = function(block) {
|
|
if (block instanceof jasmine.Suite) {
|
|
this.addSuite(block);
|
|
}
|
|
this.queue.add(block);
|
|
};
|
|
|
|
jasmine.Runner.prototype.specs = function () {
|
|
var suites = this.suites();
|
|
var specs = [];
|
|
for (var i = 0; i < suites.length; i++) {
|
|
specs = specs.concat(suites[i].specs());
|
|
}
|
|
return specs;
|
|
};
|
|
|
|
|
|
jasmine.Runner.prototype.suites = function() {
|
|
return this.suites_;
|
|
};
|
|
|
|
jasmine.Runner.prototype.results = function() {
|
|
return this.queue.results();
|
|
}; |