MCPcopy Create free account
hub / github.com/cucumber/cucumber-cpp / StepCallChain

Method StepCallChain

src/HookRegistrar.cpp:127–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125}
126
127StepCallChain::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
140InvokeResult StepCallChain::exec() {
141 execNext();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected