| 6558 | using TestRunNode = Node<TestRunStats, TestGroupNode>; |
| 6559 | |
| 6560 | CumulativeReporterBase(ReporterConfig const& _config) |
| 6561 | : m_config(_config.fullConfig()) |
| 6562 | , stream(_config.stream()) |
| 6563 | { |
| 6564 | m_reporterPrefs.shouldRedirectStdOut = false; |
| 6565 | if (!DerivedT::getSupportedVerbosities().count(m_config->verbosity())) |
| 6566 | CATCH_ERROR("Verbosity level not supported by this reporter"); |
| 6567 | } |
| 6568 | ~CumulativeReporterBase() override = default; |
| 6569 | |
| 6570 | ReporterPreferences getPreferences() const override |
nothing calls this directly
no test coverage detected