Rename IStreamingReporterPtr => IEventListenerPtr

This reflects the renaming of the reporter/listener base class.
This commit is contained in:
Martin Hořeňovský
2022-04-10 21:50:30 +02:00
parent 73d8fb5bca
commit 4e006a93ff
12 changed files with 23 additions and 23 deletions

View File

@@ -281,7 +281,7 @@ TEST_CASE("Multireporter updates ReporterPreferences properly",
namespace {
class TestReporterFactory : public Catch::IReporterFactory {
Catch::IStreamingReporterPtr create( Catch::ReporterConfig const& ) const override {
Catch::IEventListenerPtr create( Catch::ReporterConfig const& ) const override {
CATCH_INTERNAL_ERROR(
"This factory should never create a reporter" );
}