Renamed ShouldNegate to FalseTest

This commit is contained in:
Phil Nash
2014-05-29 08:00:20 +01:00
parent 10801c2876
commit be9fe76101
4 changed files with 16 additions and 18 deletions

View File

@@ -55,7 +55,7 @@ namespace Catch {
}
std::string AssertionResult::getExpression() const {
if( shouldNegate( m_info.resultDisposition ) )
if( isFalseTest( m_info.resultDisposition ) )
return "!" + m_info.capturedExpression;
else
return m_info.capturedExpression;