TestRunner constructor

TestRunner({
  1. required String testSuitePath,
  2. bool useInternalTests = false,
  3. String logDirPath = 'test-logs',
  4. bool verbose = false,
  5. bool parallel = false,
  6. int parallelJobs = 4,
  7. String? filterPattern,
  8. List<String> categories = const [],
  9. List<String> skipList = const [],
})

Implementation

TestRunner({
  required this.testSuitePath,
  // required this.mode,
  this.useInternalTests = false,
  this.logDirPath = 'test-logs',
  this.verbose = false,
  this.parallel = false,
  this.parallelJobs = 4,
  this.filterPattern,
  this.categories = const [],
  this.skipList = const [],
});