diff --git a/include/internal/catch_assertionhandler.cpp b/include/internal/catch_assertionhandler.cpp index 0eed7cd9..3465269f 100644 --- a/include/internal/catch_assertionhandler.cpp +++ b/include/internal/catch_assertionhandler.cpp @@ -72,6 +72,13 @@ namespace Catch { bool negated = isFalseTest( m_assertionInfo.resultDisposition ); bool result = expr.getResult() != negated; + if(result && !getCurrentContext().getConfig()->includeSuccessfulResults()) + { + getCurrentContext().getResultCapture()->assertionRun(); + getCurrentContext().getResultCapture()->assertionPassed(); + return; + } + handle( result ? ResultWas::Ok : ResultWas::ExpressionFailed, &expr, negated ); } void AssertionHandler::handle( ResultWas::OfType resultType ) {