TestEvent.suite constructor

TestEvent.suite(
  1. Suite 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

factory TestEvent.suite(Suite suite, {required int time}) = TestEventSuite;