| 8022 | } |
| 8023 | |
| 8024 | std::string AssertionResult::getExpression() const { |
| 8025 | if( isFalseTest( m_info.resultDisposition ) ) |
| 8026 | return "!(" + m_info.capturedExpression + ")"; |
| 8027 | else |
| 8028 | return m_info.capturedExpression; |
| 8029 | } |
| 8030 | |
| 8031 | std::string AssertionResult::getExpressionInMacro() const { |
| 8032 | std::string expr; |
no test coverage detected