config must outlive the function
| 38 | |
| 39 | //! config must outlive the function |
| 40 | Catch::ReporterConfig makeDummyRepConfig( Catch::Config const& config ) { |
| 41 | return Catch::ReporterConfig{ |
| 42 | &config, |
| 43 | Catch::Detail::make_unique<StringIStream>(), |
| 44 | Catch::ColourMode::None, |
| 45 | {} }; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | TEST_CASE( "The default listing implementation write to provided stream", |