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