| 3535 | namespace Catch { |
| 3536 | |
| 3537 | struct ReporterConfig { |
| 3538 | explicit ReporterConfig( IConfigPtr const& _fullConfig ); |
| 3539 | |
| 3540 | ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ); |
| 3541 | |
| 3542 | std::ostream& stream() const; |
| 3543 | IConfigPtr fullConfig() const; |
| 3544 | |
| 3545 | private: |
| 3546 | std::ostream* m_stream; |
| 3547 | IConfigPtr m_fullConfig; |
| 3548 | }; |
| 3549 | |
| 3550 | struct ReporterPreferences { |
| 3551 | bool shouldRedirectStdOut = false; |
no outgoing calls
no test coverage detected