Represents a test iteration result.

interface TestIterationDetailsModel {
    actionResults?: TestActionResultModel[];
    attachments?: TestCaseResultAttachmentModel[];
    comment?: string;
    completedDate?: Date;
    durationInMs?: number;
    errorMessage?: string;
    id?: number;
    outcome?: string;
    parameters?: TestResultParameterModel[];
    startedDate?: Date;
    url?: string;
}

Properties

actionResults?: TestActionResultModel[]

Test step results in an iteration.

Reference to attachments in test iteration result.

comment?: string

Comment in test iteration result.

completedDate?: Date

Time when execution completed(UTC).

durationInMs?: number

Duration of execution.

errorMessage?: string

Error message in test iteration result execution.

id?: number

ID of test iteration result.

outcome?: string

Test outcome if test iteration result.

Test parameters in an iteration.

startedDate?: Date

Time when execution started(UTC).

url?: string

Url to test iteration result.