| 6421 | } |
| 6422 | |
| 6423 | std::string AssertionResult::getExpression() const { |
| 6424 | if( isFalseTest( m_info.resultDisposition ) ) |
| 6425 | return "!(" + m_info.capturedExpression + ")"; |
| 6426 | else |
| 6427 | return m_info.capturedExpression; |
| 6428 | } |
| 6429 | |
| 6430 | std::string AssertionResult::getExpressionInMacro() const { |
| 6431 | std::string expr; |
no test coverage detected