TestSpecification constructor

TestSpecification({
  1. AndroidInstrumentationTest? androidInstrumentationTest,
  2. AndroidRoboTest? androidRoboTest,
  3. AndroidTestLoop? androidTestLoop,
  4. bool? disablePerformanceMetrics,
  5. bool? disableVideoRecording,
  6. IosTestLoop? iosTestLoop,
  7. IosTestSetup? iosTestSetup,
  8. IosXcTest? iosXcTest,
  9. TestSetup? testSetup,
  10. String? testTimeout,
})

Implementation

TestSpecification({
  this.androidInstrumentationTest,
  this.androidRoboTest,
  this.androidTestLoop,
  this.disablePerformanceMetrics,
  this.disableVideoRecording,
  this.iosTestLoop,
  this.iosTestSetup,
  this.iosXcTest,
  this.testSetup,
  this.testTimeout,
});