| 26 | using namespace cucumber::internal; |
| 27 | |
| 28 | class GTestStepDouble : public GTestStep { |
| 29 | public: |
| 30 | bool isInitialized() { |
| 31 | return GTestStep::initialized; |
| 32 | } |
| 33 | |
| 34 | const InvokeResult invokeStepBody() override { |
| 35 | return GTestStep::invokeStepBody(); |
| 36 | }; |
| 37 | |
| 38 | void body() override{}; |
| 39 | }; |
| 40 | |
| 41 | class GTestDriverTest : public DriverTest { |
| 42 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected