A suite entry defines properties for a test suite.

interface SuiteEntry {
    id?: number;
    sequenceNumber?: number;
    suiteEntryType?: SuiteEntryTypes;
    suiteId?: number;
}

Hierarchy (View Summary)

Properties

id?: number

Id of the suite entry in the test suite: either a test case id or child suite id.

sequenceNumber?: number

Sequence number for the suite entry object in the test suite.

suiteEntryType?: SuiteEntryTypes

Defines whether the entry is of type test case or suite.

suiteId?: number

Id for the test suite.