| 26 | using namespace cucumber::internal; |
| 27 | |
| 28 | class QtTestStepDouble : public QtTestStep { |
| 29 | public: |
| 30 | QtTestStepDouble() : |
| 31 | QtTestStep(), |
| 32 | testRun(false) { |
| 33 | } |
| 34 | |
| 35 | const InvokeResult invokeStepBody() override { |
| 36 | return QtTestStep::invokeStepBody(); |
| 37 | } |
| 38 | |
| 39 | void body() override { |
| 40 | testRun = true; |
| 41 | } |
| 42 | |
| 43 | bool testRun; |
| 44 | }; |
| 45 | |
| 46 | class QtTestDriverTest : public DriverTest { |
| 47 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected