addTestStep method

void addTestStep(
  1. TestStep step
)

Adds a test step to this test at the current pinnedStepIndex and increments pinnedStepIndex by one.

Implementation

void addTestStep(TestStep step) => steps.insert(++pinnedStepIndex, step);