| 6413 | { |
| 6414 | |
| 6415 | StreamingReporterBase(ReporterConfig const& _config) |
| 6416 | : m_config(_config.fullConfig()) |
| 6417 | , stream(_config.stream()) |
| 6418 | { |
| 6419 | m_reporterPrefs.shouldRedirectStdOut = false; |
| 6420 | if (!DerivedT::getSupportedVerbosities().count(m_config->verbosity())) |
| 6421 | CATCH_ERROR("Verbosity level not supported by this reporter"); |
| 6422 | } |
| 6423 | |
| 6424 | ReporterPreferences getPreferences() const override |
| 6425 | { |
nothing calls this directly
no test coverage detected