| 125 | } |
| 126 | |
| 127 | StepCallChain::StepCallChain( |
| 128 | Scenario* scenario, |
| 129 | const StepInfo* const stepInfo, |
| 130 | const InvokeArgs* pStepArgs, |
| 131 | HookRegistrar::aroundhook_list_type& aroundHooks |
| 132 | ) : |
| 133 | scenario(scenario), |
| 134 | stepInfo(stepInfo), |
| 135 | pStepArgs(pStepArgs) { |
| 136 | nextHook = aroundHooks.begin(); |
| 137 | hookEnd = aroundHooks.end(); |
| 138 | } |
| 139 | |
| 140 | InvokeResult StepCallChain::exec() { |
| 141 | execNext(); |
nothing calls this directly
no outgoing calls
no test coverage detected