UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

28 lines 948 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.O3rRadioElement = void 0; const index_1 = require("../../errors/index"); const element_1 = require("../element"); /** * Mock for ElementProfile class. * This class is used for fixture compilation purpose. */ class O3rRadioElement extends element_1.O3rElement { constructor(_sourceElement) { super(_sourceElement); } /** @inheritDoc */ check(_value = true) { throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation'); } /** @inheritDoc */ uncheck() { throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation'); } /** @inheritDoc */ isChecked() { throw new index_1.TranspilationPurposeOnlyError('Should target a proper implementation'); } } exports.O3rRadioElement = O3rRadioElement; //# sourceMappingURL=radio-element.js.map