Step report constructor. :param pytest_bdd.parser.Step step: Step.
(self, step: Step)
| 27 | stopped = None |
| 28 | |
| 29 | def __init__(self, step: Step) -> None: |
| 30 | """Step report constructor. |
| 31 | |
| 32 | :param pytest_bdd.parser.Step step: Step. |
| 33 | """ |
| 34 | self.step = step |
| 35 | self.started = time.perf_counter() |
| 36 | |
| 37 | def serialize(self) -> dict[str, Any]: |
| 38 | """Serialize the step execution report. |
nothing calls this directly
no outgoing calls
no test coverage detected