2009-07-09 01:18:17 +00:00
|
|
|
/** No-op base class for Jasmine reporters.
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
jasmine.Reporter = function() {
|
|
|
|
};
|
|
|
|
|
2009-07-09 01:33:15 +00:00
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
|
|
jasmine.Reporter.prototype.reportRunnerStarting = function(runner) {
|
|
|
|
};
|
|
|
|
|
2009-07-09 01:18:17 +00:00
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
|
|
jasmine.Reporter.prototype.reportRunnerResults = function(runner) {
|
|
|
|
};
|
|
|
|
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
|
|
jasmine.Reporter.prototype.reportSuiteResults = function(suite) {
|
|
|
|
};
|
|
|
|
|
2010-06-24 18:10:58 +00:00
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
|
|
jasmine.Reporter.prototype.reportSpecStarting = function(spec) {
|
|
|
|
};
|
|
|
|
|
2009-07-09 01:18:17 +00:00
|
|
|
//noinspection JSUnusedLocalSymbols
|
|
|
|
jasmine.Reporter.prototype.reportSpecResults = function(spec) {
|
|
|
|
};
|
|
|
|
|
|
|
|
//noinspection JSUnusedLocalSymbols
|
2009-07-10 21:35:24 +00:00
|
|
|
jasmine.Reporter.prototype.log = function(str) {
|
2009-07-09 01:18:17 +00:00
|
|
|
};
|
|
|
|
|