AllSuitesTestEvent constructor

const AllSuitesTestEvent({
  1. required int count,
  2. required int time,
})

A single suite count event is emitted once the test runner knows the total number of suites that will be loaded over the course of the test run. Because this is determined asynchronously, its position relative to other events (except StartTestEvent) is not guaranteed.

Implementation

const AllSuitesTestEvent({
  required this.count,
  required super.time,
}) : super(type: 'allSuites');