| 59 | } |
| 60 | |
| 61 | InvokeResult HookRegistrar::execStepChain( |
| 62 | Scenario* scenario, const StepInfo* const stepInfo, const InvokeArgs* pArgs |
| 63 | ) { |
| 64 | StepCallChain scc(scenario, stepInfo, pArgs, aroundStepHooks()); |
| 65 | return scc.exec(); |
| 66 | } |
| 67 | |
| 68 | void HookRegistrar::addAfterStepHook(std::shared_ptr<AfterStepHook> afterStepHook) { |
| 69 | afterStepHooks().push_front(afterStepHook); |