SuiteTestEvent constructor

const SuiteTestEvent({
  1. required TestSuite suite,
  2. required int time,
})

A suite event is emitted before any GroupEvents for groups in a given test suite. This is the only event that contains the full metadata about a suite; future events will refer to the suite by its opaque ID.

Implementation

const SuiteTestEvent({
  required this.suite,
  required super.time,
}) : super(type: 'suite');