TestResult constructor

TestResult({
  1. required int index,
  2. required String filePath,
  3. required bool isSuccess,
  4. required Duration duration,
  5. required int totalTestsCount,
  6. required int successTestsCount,
  7. required int errorTestsCount,
})

Implementation

TestResult({
  required this.index,
  required this.filePath,
  required this.isSuccess,
  required this.duration,
  required this.totalTestsCount,
  required this.successTestsCount,
  required this.errorTestsCount,
});