Suite create model

interface SuiteCreateModel {
    name?: string;
    queryString?: string;
    requirementIds?: number[];
    suiteType?: string;
}

Properties

name?: string

Name of test suite.

queryString?: string

For query based suites, query string that defines the suite.

requirementIds?: number[]

For requirements test suites, the IDs of the requirements.

suiteType?: string

Type of test suite to create. It can have value from DynamicTestSuite, StaticTestSuite and RequirementTestSuite.