@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
19 lines • 617 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.O3rRadioGroup = void 0;
const index_1 = require("../../errors/index");
const group_1 = require("../group");
/**
* Mock for RadioGroupProfile class.
* This class is used for fixture compilation purpose.
*/
class O3rRadioGroup extends group_1.O3rGroup {
constructor(sourceElement) {
super(sourceElement);
}
getSelectedItem() {
throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation');
}
}
exports.O3rRadioGroup = O3rRadioGroup;
//# sourceMappingURL=radio-group.js.map