Specialize XML reporter's --list output

This commit is contained in:
Martin Hořeňovský
2019-06-22 15:31:11 +02:00
parent 85b129c741
commit be44cfa63b
8 changed files with 116 additions and 10 deletions

View File

@@ -261,6 +261,11 @@ namespace Catch {
void assertionStarting(AssertionInfo const&) override;
bool assertionEnded(AssertionStats const&) override;
// Event listeners should not use the default listing impl
void listReporters(std::vector<ReporterDescription> const&, Config const&) override {}
void listTests(std::vector<TestCase> const&, Config const&) override {}
void listTags(std::vector<TagInfo> const&, Config const&) override {}
};
} // end namespace Catch