| 5283 | namespace Catch { |
| 5284 | |
| 5285 | struct ReporterConfig { |
| 5286 | explicit ReporterConfig( IConfigPtr const& _fullConfig ); |
| 5287 | |
| 5288 | ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ); |
| 5289 | |
| 5290 | std::ostream& stream() const; |
| 5291 | IConfigPtr fullConfig() const; |
| 5292 | |
| 5293 | private: |
| 5294 | std::ostream* m_stream; |
| 5295 | IConfigPtr m_fullConfig; |
| 5296 | }; |
| 5297 | |
| 5298 | struct ReporterPreferences { |
| 5299 | bool shouldRedirectStdOut = false; |
no outgoing calls
no test coverage detected