| 9272 | struct StreamingReporterBase : SharedImpl<IStreamingReporter> { |
| 9273 | |
| 9274 | StreamingReporterBase( ReporterConfig const& _config ) |
| 9275 | : m_config( _config.fullConfig() ), |
| 9276 | stream( _config.stream() ) |
| 9277 | { |
| 9278 | m_reporterPrefs.shouldRedirectStdOut = false; |
| 9279 | } |
| 9280 | |
| 9281 | virtual ReporterPreferences getPreferences() const CATCH_OVERRIDE { |
| 9282 | return m_reporterPrefs; |
nothing calls this directly
no test coverage detected