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

Method StepInfo

src/StepManager.cpp:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4namespace internal {
5
6StepInfo::StepInfo(const std::string& stepMatcher, const std::string source) :
7 regex(stepMatcher),
8 source(source) {
9 static step_id_type currentId = 0;
10 id = ++currentId;
11}
12
13SingleStepMatch StepInfo::matches(const std::string& stepDescription) const {
14 SingleStepMatch stepMatch;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected