UnitStep<SUT, Example extends UnitExample?> constructor

UnitStep<SUT, Example extends UnitExample?>({
  1. required String description,
  2. required UnitStepCallback<SUT, Example> step,
})

Implementation

UnitStep({
  required String description,
  required UnitStepCallback<SUT, Example> step,
})  : _description = description,
      _step = step;