| 22 | } |
| 23 | |
| 24 | void GTestStep::initGTest() { |
| 25 | int fake_argc = 1; |
| 26 | char* fake_argv[1]; |
| 27 | fake_argv[0] = (char*)"cucumber-cpp"; |
| 28 | ::testing::InitGoogleTest(&fake_argc, fake_argv); |
| 29 | initialized = true; |
| 30 | } |
| 31 | |
| 32 | void GTestStep::initFlags() { |
| 33 | ::testing::GTEST_FLAG(throw_on_failure) = true; // let cucumber-cpp drive |
nothing calls this directly
no outgoing calls
no test coverage detected