mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
added override keyword to overrides in compact reporter
This commit is contained in:
parent
bc73189c52
commit
10c36aa74c
@ -23,19 +23,19 @@ namespace Catch {
|
|||||||
return "Reports test results on a single line, suitable for IDEs";
|
return "Reports test results on a single line, suitable for IDEs";
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ReporterPreferences getPreferences() const {
|
ReporterPreferences getPreferences() const override {
|
||||||
ReporterPreferences prefs;
|
ReporterPreferences prefs;
|
||||||
prefs.shouldRedirectStdOut = false;
|
prefs.shouldRedirectStdOut = false;
|
||||||
return prefs;
|
return prefs;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void noMatchingTestCases( std::string const& spec ) {
|
void noMatchingTestCases( std::string const& spec ) override {
|
||||||
stream << "No test cases matched '" << spec << '\'' << std::endl;
|
stream << "No test cases matched '" << spec << '\'' << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void assertionStarting( AssertionInfo const& ) {}
|
void assertionStarting( AssertionInfo const& ) override {}
|
||||||
|
|
||||||
virtual bool assertionEnded( AssertionStats const& _assertionStats ) {
|
bool assertionEnded( AssertionStats const& _assertionStats ) override {
|
||||||
AssertionResult const& result = _assertionStats.assertionResult;
|
AssertionResult const& result = _assertionStats.assertionResult;
|
||||||
|
|
||||||
bool printInfoMessages = true;
|
bool printInfoMessages = true;
|
||||||
@ -60,7 +60,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void testRunEnded( TestRunStats const& _testRunStats ) {
|
void testRunEnded( TestRunStats const& _testRunStats ) override {
|
||||||
printTotals( _testRunStats.totals );
|
printTotals( _testRunStats.totals );
|
||||||
stream << '\n' << std::endl;
|
stream << '\n' << std::endl;
|
||||||
StreamingReporterBase::testRunEnded( _testRunStats );
|
StreamingReporterBase::testRunEnded( _testRunStats );
|
||||||
|
Loading…
Reference in New Issue
Block a user