| 4621 | namespace Catch { |
| 4622 | |
| 4623 | struct ReporterConfig { |
| 4624 | explicit ReporterConfig( IConfigPtr const& _fullConfig ); |
| 4625 | |
| 4626 | ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ); |
| 4627 | |
| 4628 | std::ostream& stream() const; |
| 4629 | IConfigPtr fullConfig() const; |
| 4630 | |
| 4631 | private: |
| 4632 | std::ostream* m_stream; |
| 4633 | IConfigPtr m_fullConfig; |
| 4634 | }; |
| 4635 | |
| 4636 | struct ReporterPreferences { |
| 4637 | bool shouldRedirectStdOut = false; |
no outgoing calls
no test coverage detected