AllSuitesTestEvent.fromJson constructor

AllSuitesTestEvent.fromJson(
  1. Map<String, dynamic> json
)

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

factory AllSuitesTestEvent.fromJson(Map<String, dynamic> json) =>
    _$AllSuitesTestEventFromJson(json);