| 6206 | } |
| 6207 | |
| 6208 | std::string AssertionResult::getExpression() const { |
| 6209 | if( isFalseTest( m_info.resultDisposition ) ) |
| 6210 | return "!(" + m_info.capturedExpression + ")"; |
| 6211 | else |
| 6212 | return m_info.capturedExpression; |
| 6213 | } |
| 6214 | |
| 6215 | std::string AssertionResult::getExpressionInMacro() const { |
| 6216 | std::string expr; |
no test coverage detected