GroupTestEvent constructor

const GroupTestEvent({
  1. required TestGroup group,
  2. required int time,
})

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

Implementation

const GroupTestEvent({
  required this.group,
  required super.time,
}) : super(type: 'group');