b
Version:
Benchmarks for Node.js.
30 lines (23 loc) • 419 B
JavaScript
/**
* Test Reporter
*
* @api public
*/
function TestReporter() {};
/**
* Report a benchmark.
*
* @param {String} name
* @param {Number} result
* @param {Number} iterations
* @api public
*/
TestReporter.prototype.report = function(name, result, iterations) {
this.name = name;
this.result = result;
this.iterations = iterations;
};
/**
* Expose `TestReporter`.
*/
module.exports = TestReporter;