RunSummary constructor
const
RunSummary({})
Creates a RunSummary.
outcome, passed, failed, and skipped are required.
failedTestNames defaults to an empty list when omitted.
Implementation
const RunSummary({
required this.outcome,
required this.passed,
required this.failed,
required this.skipped,
this.failedTestNames = const [],
this.crashOutput,
this.duration,
});