TestSuiteOverview constructor

TestSuiteOverview({
  1. Duration? elapsedTime,
  2. int? errorCount,
  3. int? failureCount,
  4. int? flakyCount,
  5. String? name,
  6. int? skippedCount,
  7. int? totalCount,
  8. FileReference? xmlSource,
})

Implementation

TestSuiteOverview({
  this.elapsedTime,
  this.errorCount,
  this.failureCount,
  this.flakyCount,
  this.name,
  this.skippedCount,
  this.totalCount,
  this.xmlSource,
});