Result summary by the outcome of test results.

interface ResultsSummaryByOutcome {
    aggregatedResultDetailsByOutcome?: {
        [key: number]: AggregatedResultDetailsByOutcome;
    };
    duration?: any;
    notReportedTestCount?: number;
    totalTestCount?: number;
}

Properties

aggregatedResultDetailsByOutcome?: {
    [key: number]: AggregatedResultDetailsByOutcome;
}

Aggregated result details for each test result outcome.

duration?: any

Time taken by results.

notReportedTestCount?: number

Total number of not reported test results.

totalTestCount?: number

Total number of test results. (It includes NotImpacted test results as well which need to exclude while calculating pass/fail test result percentage).