Represents a sub result of a test result.

interface TestSubResult {
    comment?: string;
    completedDate?: Date;
    computerName?: string;
    configuration?: ShallowReference;
    customFields?: CustomTestField[];
    displayName?: string;
    durationInMs?: number;
    errorMessage?: string;
    id?: number;
    lastUpdatedDate?: Date;
    outcome?: string;
    parentId?: number;
    resultGroupType?: ResultGroupType;
    sequenceId?: number;
    stackTrace?: string;
    startedDate?: Date;
    subResults?: TestSubResult[];
    testResult?: TestCaseResultIdentifier;
    url?: string;
}

Properties

comment?: string

Comment in sub result.

completedDate?: Date

Time when test execution completed(UTC).

computerName?: string

Machine where test executed.

configuration?: ShallowReference

Reference to test configuration.

customFields?: CustomTestField[]

Additional properties of sub result.

displayName?: string

Name of sub result.

durationInMs?: number

Duration of test execution.

errorMessage?: string

Error message in sub result.

id?: number

ID of sub result.

lastUpdatedDate?: Date

Time when result last updated(UTC).

outcome?: string

Outcome of sub result.

parentId?: number

Immediate parent ID of sub result.

resultGroupType?: ResultGroupType

Hierarchy type of the result, default value of None means its leaf node.

sequenceId?: number

Index number of sub result.

stackTrace?: string

Stacktrace.

startedDate?: Date

Time when test execution started(UTC).

subResults?: TestSubResult[]

List of sub results inside a sub result, if ResultGroupType is not None, it holds corresponding type sub results.

Reference to test result.

url?: string

Url of sub result.