Suite constructor

Suite({
  1. String? path,
  2. required String platform,
  3. required List<Test> allTests,
})

Factory constructor to create a Suite

Implementation

factory Suite({
  /// Optional path to this suite's file
  String? path,

  /// Platform on which this suite is running
  required String platform,

  /// All Tests contained within this suite
  required List<Test> allTests,
}) = _Suite;