| 6 | using namespace cucumber::internal; |
| 7 | |
| 8 | class ContextHandlingTest : public ::testing::Test { |
| 9 | public: |
| 10 | ContextHandlingTest() : |
| 11 | contextManager() { |
| 12 | } |
| 13 | |
| 14 | protected: |
| 15 | ContextManagerTestDouble contextManager; |
| 16 | |
| 17 | private: |
| 18 | void TearDown() override { |
| 19 | contextManager.purgeContexts(); |
| 20 | } |
| 21 | }; |
| 22 | |
| 23 | struct Context1 { |
| 24 | int i; |
nothing calls this directly
no outgoing calls
no test coverage detected