| 11007 | // cout may get redirected when running tests |
| 11008 | CoutStream() : m_os( Catch::cout().rdbuf() ) {} |
| 11009 | ~CoutStream() override = default; |
| 11010 | |
| 11011 | public: // IStream |
| 11012 | std::ostream& stream() const override { return m_os; } |
nothing calls this directly
no outgoing calls
no test coverage detected