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

Class QtTestStepDouble

tests/integration/drivers/QtTestDriverTest.cpp:28–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26using namespace cucumber::internal;
27
28class QtTestStepDouble : public QtTestStep {
29public:
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
46class QtTestDriverTest : public DriverTest {
47public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected