ts-mockito
Version:
Mocking library for TypeScript
12 lines • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var AbstractMethodStub = (function () {
function AbstractMethodStub() {
}
AbstractMethodStub.prototype.getGroupIndex = function () {
return this.groupIndex;
};
return AbstractMethodStub;
}());
exports.AbstractMethodStub = AbstractMethodStub;
//# sourceMappingURL=AbstractMethodStub.js.map