| 5479 | namespace Catch { |
| 5480 | |
| 5481 | struct ReporterConfig { |
| 5482 | explicit ReporterConfig( IConfigPtr const& _fullConfig ); |
| 5483 | |
| 5484 | ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ); |
| 5485 | |
| 5486 | std::ostream& stream() const; |
| 5487 | IConfigPtr fullConfig() const; |
| 5488 | |
| 5489 | private: |
| 5490 | std::ostream* m_stream; |
| 5491 | IConfigPtr m_fullConfig; |
| 5492 | }; |
| 5493 | |
| 5494 | struct ReporterPreferences { |
| 5495 | bool shouldRedirectStdOut = false; |
no outgoing calls
no test coverage detected