xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
17 lines • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UiLabelElementMock = void 0;
var UiLabelElementMock = /** @class */ (function () {
function UiLabelElementMock(label) {
this.label = label;
}
UiLabelElementMock.prototype.getLabel = function () {
return this.label;
};
UiLabelElementMock.prototype.setLabel = function (label) {
this.label = label;
};
return UiLabelElementMock;
}());
exports.UiLabelElementMock = UiLabelElementMock;
//# sourceMappingURL=uilabelelement.mock.js.map