@johanblumenberg/ts-mockito
Version:
Mocking library for TypeScript
49 lines • 2.21 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
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 extendStatics(d, b);
};
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 });
exports.CallFunctionMethodStub = void 0;
var ArgsToMatchersValidator_1 = require("../matcher/ArgsToMatchersValidator");
var AbstractMethodStub_1 = require("./AbstractMethodStub");
var CallFunctionMethodStub = (function (_super) {
__extends(CallFunctionMethodStub, _super);
function CallFunctionMethodStub(groupIndex, matchers, methodToStub, func, oneshot) {
if (oneshot === void 0) { oneshot = false; }
var _this = _super.call(this, groupIndex, oneshot) || this;
_this.matchers = matchers;
_this.methodToStub = methodToStub;
_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;
};
CallFunctionMethodStub.prototype.proceed = function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
return this.methodToStub.mocker.proceed(this.methodToStub.methodName, args);
};
return CallFunctionMethodStub;
}(AbstractMethodStub_1.AbstractMethodStub));
exports.CallFunctionMethodStub = CallFunctionMethodStub;
//# sourceMappingURL=CallFunctionMethodStub.js.map