| 5844 | using TestRunNode = Node<TestRunStats, TestGroupNode>; |
| 5845 | |
| 5846 | CumulativeReporterBase( ReporterConfig const& _config ) |
| 5847 | : m_config( _config.fullConfig() ), |
| 5848 | stream( _config.stream() ) |
| 5849 | { |
| 5850 | m_reporterPrefs.shouldRedirectStdOut = false; |
| 5851 | if( !DerivedT::getSupportedVerbosities().count( m_config->verbosity() ) ) |
| 5852 | CATCH_ERROR( "Verbosity level not supported by this reporter" ); |
| 5853 | } |
| 5854 | ~CumulativeReporterBase() override = default; |
| 5855 | |
| 5856 | ReporterPreferences getPreferences() const override { |
nothing calls this directly
no test coverage detected