ts-mockito
Version:
Mocking library for TypeScript
13 lines • 459 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var MethodToStub = (function () {
function MethodToStub(methodStubCollection, matchers, mocker, name) {
this.methodStubCollection = methodStubCollection;
this.matchers = matchers;
this.mocker = mocker;
this.name = name;
}
return MethodToStub;
}());
exports.MethodToStub = MethodToStub;
//# sourceMappingURL=MethodToStub.js.map