Store the streambuf from cerr up-front because cout may get redirected when running tests
| 4630 | // Store the streambuf from cerr up-front because |
| 4631 | // cout may get redirected when running tests |
| 4632 | CerrStream(): m_os( Catch::cerr().rdbuf() ) {} |
| 4633 | |
| 4634 | public: // IStream |
| 4635 | std::ostream& stream() override { return m_os; } |