All files / botbuilder-unit/src/log-reporters EmptyLogReporter.js

100% Statements 17/17
100% Branches 0/0
100% Functions 13/13
100% Lines 17/17
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53    1x     2x     1x 1x     1x     1x     1x     1x     1x     1x     1x     1x     1x     1x     1x     1x             1x
'use strict';
 
const BaseLogReporter = require('./BaseLogReporter');
 
function EmptyLogReporter() {
  BaseLogReporter.call(this);
}
 
EmptyLogReporter.prototype = Object.create(BaseLogReporter.prototype);
EmptyLogReporter.prototype.constructor = EmptyLogReporter;
 
 
EmptyLogReporter.prototype.newScript = function (intro) {
 
}
EmptyLogReporter.prototype.scriptFinished = function () {
 
}
EmptyLogReporter.prototype.messageReceived = function (step, message) {
 
}
EmptyLogReporter.prototype.endConversation = function (step) {
 
}
EmptyLogReporter.prototype.typing = function (step) {
 
}
EmptyLogReporter.prototype.messageSent = function (step, message) {
 
}
EmptyLogReporter.prototype.customStep = function (step, message) {
 
}
EmptyLogReporter.prototype.expectationError = function (step, received, error) {
 
}
EmptyLogReporter.prototype.error = function (errorHeader, message) {
 
}
EmptyLogReporter.prototype.warning = function (warningHeader, message) {
 
}
EmptyLogReporter.prototype.info = function (infoHeader, message) {
 
}
EmptyLogReporter.prototype.session = function (step, message) {
 
}
 
 
 
 
module.exports = EmptyLogReporter;