Test for FAIL that doesn’t take an argument

This commit is contained in:
Phil Nash 2013-12-14 14:30:58 +00:00
parent 274ed3ea76
commit b4625208d0
2 changed files with 9 additions and 1 deletions

View file

@ -159,7 +159,7 @@ struct TestFailureException{};
#define INTERNAL_CATCH_MSG( messageType, resultDisposition, macroName, log ) \
do { \
INTERNAL_CATCH_ACCEPT_INFO( "", macroName, resultDisposition ); \
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( messageType ) << log +::Catch::StreamEndStop(), resultDisposition, true ) \
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionResultBuilder( messageType ) << log, resultDisposition, true ) \
} while( Catch::isTrue( false ) )
#endif