| 7 | class FakeStepInfo : public StepInfo { |
| 8 | public: |
| 9 | FakeStepInfo(std::stringstream* markersPtr, const InvokeResult& result) : |
| 10 | StepInfo("FAKE", ""), |
| 11 | latestArgsPtr(0), |
| 12 | markersPtr(markersPtr), |
| 13 | result(result) { |
| 14 | } |
| 15 | |
| 16 | InvokeResult invokeStep(const InvokeArgs* pArgs) const override { |
| 17 | latestArgsPtr = pArgs; |
nothing calls this directly
no outgoing calls
no test coverage detected