defineSmokeTest method

void defineSmokeTest(
  1. AFWorkflowStateTestPrototype prototype, {
  2. String? description,
  3. AFScreenTestID id = AFUIScreenTestID.smoke,
  4. required AFWorkflowTestBodyExecuteDelegate body,
  5. String? disabled,
})

Implementation

void defineSmokeTest(AFWorkflowStateTestPrototype prototype, {
  String? description,
  AFScreenTestID id = AFUIScreenTestID.smoke,
  required AFWorkflowTestBodyExecuteDelegate body,
  String? disabled }) {
  prototype.defineSmokeTest(body: body, id: id, description: description, disabled: disabled);
}