import "../ApiClient-fBZ10h6n.mjs"; import "../StateType-CA4aMnXy.mjs"; import "../Asset-QWv2ZEoy.mjs"; import "../TaskFixture-CCwz5_h2.mjs"; import "../TriggerFixture-Ceo47lhR.mjs"; import { t as Fixtures_default } from "../Fixtures-HC5Z2Uzn.mjs"; //#region src/model/UnitTest.d.ts type IUnitTest = { id: string; type: string; disabled: boolean; description: string; fixtures: Fixtures_default; /** * :model/Assertion>} assertions */ "": Array; }; /** * @typedef {Object} IUnitTest * @property {String} id * @property {String} type * @property {Boolean} disabled * @property {String} description * @property {Fixtures} fixtures * @property {Array.} assertions */ /** * The UnitTest model module. * @module model/UnitTest * @type {IUnitTest} */ declare class UnitTest { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, type: any, assertions: any): void; /** * Constructs a UnitTest from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/UnitTest} obj Optional instance to populate. * @return {module:model/UnitTest} The populated UnitTest instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to UnitTest. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to UnitTest. */ static validateJSON(data: any): boolean; /** * Constructs a new UnitTest. * @alias module:model/UnitTest * @param {String} id - * @param {String} type - * @param {Array.} assertions - */ constructor(id: string, type: string, assertions: any); id: string; type: string; disabled: boolean; description: string; fixtures: Fixtures_default; assertions: any; } declare namespace UnitTest { let RequiredProperties: string[]; } //#endregion export { IUnitTest, UnitTest as default };