| 5853 | using TestRunNode = Node<TestRunStats, TestGroupNode>; |
| 5854 | |
| 5855 | CumulativeReporterBase( ReporterConfig const& _config ) |
| 5856 | : m_config( _config.fullConfig() ), |
| 5857 | stream( _config.stream() ) |
| 5858 | { |
| 5859 | m_reporterPrefs.shouldRedirectStdOut = false; |
| 5860 | if( !DerivedT::getSupportedVerbosities().count( m_config->verbosity() ) ) |
| 5861 | CATCH_ERROR( "Verbosity level not supported by this reporter" ); |
| 5862 | } |
| 5863 | ~CumulativeReporterBase() override = default; |
| 5864 | |
| 5865 | ReporterPreferences getPreferences() const override { |
nothing calls this directly
no test coverage detected