| 36 | int ContextListener::destroyedContexts = 0; |
| 37 | |
| 38 | class SomeContext { |
| 39 | private: |
| 40 | ContextListener listener; |
| 41 | |
| 42 | public: |
| 43 | SomeContext() { |
| 44 | listener.notifyCreation(); |
| 45 | } |
| 46 | ~SomeContext() { |
| 47 | listener.notifyDestruction(); |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | namespace cucumber { |
| 52 | namespace internal { |
nothing calls this directly
no outgoing calls
no test coverage detected