| 9452 | // cout may get redirected when running tests |
| 9453 | CoutStream() : m_os( Catch::cout().rdbuf() ) {} |
| 9454 | ~CoutStream() override = default; |
| 9455 | |
| 9456 | public: // IStream |
| 9457 | std::ostream& stream() const override { return m_os; } |
nothing calls this directly
no outgoing calls
no test coverage detected