| 5105 | } |
| 5106 | |
| 5107 | std::string AssertionResult::getExpression() const { |
| 5108 | if( isFalseTest( m_info.resultDisposition ) ) |
| 5109 | return "!(" + m_info.capturedExpression + ")"; |
| 5110 | else |
| 5111 | return m_info.capturedExpression; |
| 5112 | } |
| 5113 | |
| 5114 | std::string AssertionResult::getExpressionInMacro() const { |
| 5115 | std::string expr; |
no test coverage detected