Completed NoAssertions warning implementation

This commit is contained in:
Phil Nash
2012-08-31 08:10:36 +01:00
parent 55764c8d47
commit a70fbe3c1a
12 changed files with 668 additions and 513 deletions

View File

@@ -88,7 +88,10 @@ namespace Catch {
virtual void StartSection( const std::string&, const std::string& ){}
virtual void EndSection( const std::string&, const Counts& ){}
virtual void NoAssertionsInSection( const std::string& ) {}
virtual void NoAssertionsInTestCase( const std::string& ) {}
virtual void EndSection( const std::string&, const Counts& ) {}
virtual void StartTestCase( const Catch::TestCaseInfo& testInfo ) {
m_currentStats->m_testCaseStats.push_back( TestCaseStats( testInfo.getName() ) );