Store the streambuf from cout up-front because cout may get redirected when running tests
| 9451 | // Store the streambuf from cout up-front because |
| 9452 | // cout may get redirected when running tests |
| 9453 | CoutStream() : m_os( Catch::cout().rdbuf() ) {} |
| 9454 | ~CoutStream() override = default; |
| 9455 | |
| 9456 | public: // IStream |
nothing calls this directly
no outgoing calls
no test coverage detected