startStep method

void startStep(
  1. TestStep step, {
  2. bool subStep = true,
})

Starts a step within the report.

Implementation

void startStep(
  TestStep step, {
  bool subStep = true,
}) {
  _pendingSteps.add(step);
  _steps[step] = TestReportStep(
    id: step.id,
    step: step.values,
    subStep: subStep,
  );
}