TestGroup constructor

const TestGroup({
  1. required int id,
  2. required String name,
  3. required int suiteID,
  4. required int testCount,
  5. required TestMetadata metadata,
  6. int? parentID,
  7. int? line,
  8. int? column,
  9. String? url,
})

A group containing test cases. The group's ID is unique in the context of this test run. It's used elsewhere in the protocol to refer to this group without including its full representation.

Implementation

const TestGroup({
  required this.id,
  required this.name,
  required this.suiteID,
  required this.testCount,
  required this.metadata,
  this.parentID,
  this.line,
  this.column,
  this.url,
});