| 4879 | namespace Catch { |
| 4880 | |
| 4881 | struct ReporterConfig { |
| 4882 | explicit ReporterConfig( IConfigPtr const& _fullConfig ); |
| 4883 | |
| 4884 | ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ); |
| 4885 | |
| 4886 | std::ostream& stream() const; |
| 4887 | IConfigPtr fullConfig() const; |
| 4888 | |
| 4889 | private: |
| 4890 | std::ostream* m_stream; |
| 4891 | IConfigPtr m_fullConfig; |
| 4892 | }; |
| 4893 | |
| 4894 | struct ReporterPreferences { |
| 4895 | bool shouldRedirectStdOut = false; |
no outgoing calls
no test coverage detected