Remove obsolete NestedResults
This commit is contained in:
@@ -1,73 +0,0 @@
|
||||
/**
|
||||
* Holds results for a set of Jasmine spec. Allows for the results array to hold another jasmine.NestedResults
|
||||
*
|
||||
* @constructor
|
||||
*/
|
||||
jasmine.NestedResults = function() {
|
||||
/**
|
||||
* The total count of results
|
||||
*/
|
||||
this.totalCount = 0;
|
||||
/**
|
||||
* Number of passed results
|
||||
*/
|
||||
this.passedCount = 0;
|
||||
/**
|
||||
* Number of failed results
|
||||
*/
|
||||
this.failedCount = 0;
|
||||
/**
|
||||
* Was this suite/spec skipped?
|
||||
*/
|
||||
this.skipped = false;
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
this.items_ = [];
|
||||
};
|
||||
|
||||
/**
|
||||
* Roll up the result counts.
|
||||
*
|
||||
* @param result
|
||||
*/
|
||||
jasmine.NestedResults.prototype.rollupCounts = function(result) {
|
||||
this.totalCount += result.totalCount;
|
||||
this.passedCount += result.passedCount;
|
||||
this.failedCount += result.failedCount;
|
||||
};
|
||||
|
||||
/**
|
||||
* Getter for the results: message & results.
|
||||
*/
|
||||
jasmine.NestedResults.prototype.getItems = function() {
|
||||
return this.items_;
|
||||
};
|
||||
|
||||
/**
|
||||
* Adds a result, tracking counts (total, passed, & failed)
|
||||
* @param {jasmine.ExpectationResult|jasmine.NestedResults} result
|
||||
*/
|
||||
//TODO: Results are meant for consumption by reporters, not internally.
|
||||
jasmine.NestedResults.prototype.addResult = function(result) {
|
||||
if (result.type != 'log') {
|
||||
if (result.items_) {
|
||||
this.rollupCounts(result);
|
||||
} else {
|
||||
this.totalCount++;
|
||||
if (result.passed) {
|
||||
this.passedCount++;
|
||||
} else {
|
||||
this.failedCount++;
|
||||
}
|
||||
}
|
||||
}
|
||||
this.items_.push(result);
|
||||
};
|
||||
|
||||
/**
|
||||
* @returns {Boolean} True if <b>everything</b> below passed
|
||||
*/
|
||||
jasmine.NestedResults.prototype.passed = function() {
|
||||
return this.passedCount === this.totalCount;
|
||||
};
|
||||
Reference in New Issue
Block a user