We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A summary of test results in TAP format.
public struct Report
CustomStringConvertible
init(results:)
Creates a new report with the specified test results.
public init(results: [Result<Outcome, BailOut>])
version
The TAP version number.
let version: Int
From the TAP v13 specification:
The version To indicate that this is TAP13 the first line must be TAP version 13
To indicate that this is TAP13 the first line must be
TAP version 13
results
The test results.
let results: [Result<Outcome, BailOut>]
description
var description: String
consolidation(of:)
Creates a new report that consolidates the test results of other reports.
public static func consolidation(of reports: [Report]) -> Report
A consolidated report of test results.