TestStartEvent constructor

const TestStartEvent({
  1. required Test test,
  2. required int time,
})

An event emitted when a test begins running. This is the only event that contains the full metadata about a test; future events will refer to the test by its opaque ID.

Implementation

const TestStartEvent({
  required this.test,
  required super.time,
}) : super(type: 'testStart');