1 /** No-op base class for Jasmine reporters. 2 * 3 * @constructor 4 */ 5 jasmine.Reporter = function() { 6 }; 7 8 //noinspection JSUnusedLocalSymbols 9 jasmine.Reporter.prototype.reportRunnerStarting = function(runner) { 10 }; 11 12 //noinspection JSUnusedLocalSymbols 13 jasmine.Reporter.prototype.reportRunnerResults = function(runner) { 14 }; 15 16 //noinspection JSUnusedLocalSymbols 17 jasmine.Reporter.prototype.reportSuiteResults = function(suite) { 18 }; 19 20 //noinspection JSUnusedLocalSymbols 21 jasmine.Reporter.prototype.reportSpecStarting = function(spec) { 22 }; 23 24 //noinspection JSUnusedLocalSymbols 25 jasmine.Reporter.prototype.reportSpecResults = function(spec) { 26 }; 27 28 //noinspection JSUnusedLocalSymbols 29 jasmine.Reporter.prototype.log = function(str) { 30 }; 31 32