| 5414 | namespace Catch { |
| 5415 | |
| 5416 | struct ReporterConfig { |
| 5417 | explicit ReporterConfig( IConfigPtr const& _fullConfig ); |
| 5418 | |
| 5419 | ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ); |
| 5420 | |
| 5421 | std::ostream& stream() const; |
| 5422 | IConfigPtr fullConfig() const; |
| 5423 | |
| 5424 | private: |
| 5425 | std::ostream* m_stream; |
| 5426 | IConfigPtr m_fullConfig; |
| 5427 | }; |
| 5428 | |
| 5429 | struct ReporterPreferences { |
| 5430 | bool shouldRedirectStdOut = false; |
no outgoing calls
no test coverage detected