TestSpecification constructor

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

Implementation

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