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

Class StepInfoPending

tests/utils/StepManagerTestDouble.hpp:19–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17};
18
19class StepInfoPending : public StepInfo {
20private:
21 const char* description;
22
23public:
24 StepInfoPending(const std::string& stepMatcher, const char* description) :
25 StepInfo(stepMatcher, ""),
26 description(description) {
27 }
28
29 InvokeResult invokeStep(const InvokeArgs*) const override {
30 return InvokeResult::pending(description);
31 }
32};
33
34/*
35 * FIXME This should be a mock testing it receives a table argument

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected