Remove last usage of NotImplementedException

TeamCity reporter now uses CATCH_ERROR instead
This commit is contained in:
Martin Hořeňovský
2017-08-30 20:03:54 +02:00
parent a4df0b2c37
commit 6388fc946f
5 changed files with 2 additions and 67 deletions

View File

@@ -97,12 +97,12 @@ namespace Catch {
case ResultWas::Ok:
case ResultWas::Info:
case ResultWas::Warning:
CATCH_ERROR( "Internal error in TeamCity reporter" );
// These cases are here to prevent compiler warnings
case ResultWas::Unknown:
case ResultWas::FailureBit:
case ResultWas::Exception:
CATCH_NOT_IMPLEMENTED;
CATCH_ERROR( "Not implemented" );
}
if( assertionStats.infoMessages.size() == 1 )
msg << " with message:";