| 17 | }; |
| 18 | |
| 19 | class StepInfoPending : public StepInfo { |
| 20 | private: |
| 21 | const char* description; |
| 22 | |
| 23 | public: |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected