interface TestResultModelBase {
    comment?: string;
    completedDate?: Date;
    durationInMs?: number;
    errorMessage?: string;
    outcome?: string;
    startedDate?: Date;
}

Hierarchy (View Summary)

Properties

comment?: string

Comment in result.

completedDate?: Date

Time when execution completed(UTC).

durationInMs?: number

Duration of execution.

errorMessage?: string

Error message in result.

outcome?: string

Test outcome of result.

startedDate?: Date

Time when execution started(UTC).