Removed now redundant handling for missing assertions in test cases

- handled as part of sections
This commit is contained in:
Phil Nash
2013-07-26 19:28:34 +01:00
parent e8cf726a23
commit 649f8c24b1
4 changed files with 0 additions and 21 deletions

View File

@@ -73,12 +73,6 @@ namespace Catch {
}
virtual void testCaseEnded( TestCaseStats const& _testCaseStats ) {
if( _testCaseStats.missingAssertions ) {
lazyPrint();
Colour colour( Colour::ResultError );
stream << "\nNo assertions in test case, '" << _testCaseStats.testInfo.name << "'\n" << std::endl;
}
StreamingReporterBase::testCaseEnded( _testCaseStats );
m_headerPrinted = false;
}