Store the streambuf from cout up-front because cout may get redirected when running tests
| 9369 | // Store the streambuf from cout up-front because |
| 9370 | // cout may get redirected when running tests |
| 9371 | CoutStream() : m_os(Catch::cout().rdbuf()) { |
| 9372 | } |
| 9373 | ~CoutStream() override = default; |
| 9374 | |
| 9375 | public: // IStream |
nothing calls this directly
no outgoing calls
no test coverage detected