Represents the test settings of the run. Used to create test settings and fetch test settings

interface TestSettings {
    areaPath?: string;
    description?: string;
    isPublic?: boolean;
    machineRoles?: string;
    testSettingsContent: string;
    testSettingsId?: number;
    testSettingsName: string;
}

Properties

areaPath?: string

Area path required to create test settings

description?: string

Description of the test settings. Used in create test settings.

isPublic?: boolean

Indicates if the tests settings is public or private.Used in create test settings.

machineRoles?: string

Xml string of machine roles. Used in create test settings.

testSettingsContent: string

Test settings content.

testSettingsId?: number

Test settings id.

testSettingsName: string

Test settings name.