EnsembleTestCase constructor

const EnsembleTestCase({
  1. required String id,
  2. String? sourcePath,
  3. String? type,
  4. String? feature,
  5. List<String> tags = const [],
  6. String? description,
  7. String? owner,
  8. String? priority,
  9. String? startScreen,
  10. String? prerequisite,
  11. Map<String, dynamic> initialState = const {},
  12. TestMocks mocks = const TestMocks(),
  13. required List<TestStep> steps,
})

Implementation

const EnsembleTestCase({
  required this.id,
  this.sourcePath,
  this.type,
  this.feature,
  this.tags = const [],
  this.description,
  this.owner,
  this.priority,
  this.startScreen,
  this.prerequisite,
  this.initialState = const {},
  this.mocks = const TestMocks(),
  required this.steps,
});