mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Remove IStreamingReporter::isMulti query
This was previously used to avoid `dynamic_cast` inside our code, when we were creating more than one reporter, or a reporter together with listeners. However, since then the offending code was refactored to be smarter instead, and this query member function is no longer needed nor used.
This commit is contained in:
parent
9de6eae6bb
commit
727b26ab35
@ -112,7 +112,6 @@ namespace Catch {
|
|||||||
TestRunStats::~TestRunStats() = default;
|
TestRunStats::~TestRunStats() = default;
|
||||||
|
|
||||||
void IStreamingReporter::fatalErrorEncountered( StringRef ) {}
|
void IStreamingReporter::fatalErrorEncountered( StringRef ) {}
|
||||||
bool IStreamingReporter::isMulti() const { return false; }
|
|
||||||
|
|
||||||
void IStreamingReporter::listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config) {
|
void IStreamingReporter::listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config) {
|
||||||
Catch::cout() << "Available reporters:\n";
|
Catch::cout() << "Available reporters:\n";
|
||||||
|
@ -241,8 +241,6 @@ namespace Catch {
|
|||||||
// Default empty implementation provided
|
// Default empty implementation provided
|
||||||
virtual void fatalErrorEncountered( StringRef name );
|
virtual void fatalErrorEncountered( StringRef name );
|
||||||
|
|
||||||
virtual bool isMulti() const;
|
|
||||||
|
|
||||||
// Listing support
|
// Listing support
|
||||||
virtual void listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config);
|
virtual void listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config);
|
||||||
virtual void listTests(std::vector<TestCaseHandle> const& tests, Config const& config);
|
virtual void listTests(std::vector<TestCaseHandle> const& tests, Config const& config);
|
||||||
|
@ -150,10 +150,6 @@ namespace Catch {
|
|||||||
m_reporter->skipTest( testInfo );
|
m_reporter->skipTest( testInfo );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ListeningReporter::isMulti() const {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ListeningReporter::listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config) {
|
void ListeningReporter::listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config) {
|
||||||
for (auto const& listener : m_listeners) {
|
for (auto const& listener : m_listeners) {
|
||||||
listener->listReporters(descriptions, config);
|
listener->listReporters(descriptions, config);
|
||||||
|
@ -50,7 +50,6 @@ namespace Catch {
|
|||||||
void testRunEnded( TestRunStats const& testRunStats ) override;
|
void testRunEnded( TestRunStats const& testRunStats ) override;
|
||||||
|
|
||||||
void skipTest( TestCaseInfo const& testInfo ) override;
|
void skipTest( TestCaseInfo const& testInfo ) override;
|
||||||
bool isMulti() const override;
|
|
||||||
|
|
||||||
void listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config) override;
|
void listReporters(std::vector<ReporterDescription> const& descriptions, Config const& config) override;
|
||||||
void listTests(std::vector<TestCaseHandle> const& tests, Config const& config) override;
|
void listTests(std::vector<TestCaseHandle> const& tests, Config const& config) override;
|
||||||
|
Loading…
Reference in New Issue
Block a user