ts-mockito
Version:
Mocking library for TypeScript
37 lines • 1.73 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var ArgsToMatchersValidator_1 = require("../matcher/ArgsToMatchersValidator");
var AbstractMethodStub_1 = require("./AbstractMethodStub");
var CallFunctionMethodStub = (function (_super) {
__extends(CallFunctionMethodStub, _super);
function CallFunctionMethodStub(groupIndex, matchers, func) {
var _this = _super.call(this) || this;
_this.groupIndex = groupIndex;
_this.matchers = matchers;
_this.func = func;
_this.validator = new ArgsToMatchersValidator_1.ArgsToMatchersValidator();
return _this;
}
CallFunctionMethodStub.prototype.isApplicable = function (args) {
return this.validator.validate(this.matchers, args);
};
CallFunctionMethodStub.prototype.execute = function (args) {
this.functionResult = this.func.apply(this, args);
};
CallFunctionMethodStub.prototype.getValue = function () {
return this.functionResult;
};
return CallFunctionMethodStub;
}(AbstractMethodStub_1.AbstractMethodStub));
exports.CallFunctionMethodStub = CallFunctionMethodStub;
//# sourceMappingURL=CallFunctionMethodStub.js.map