| 4906 | } |
| 4907 | |
| 4908 | std::string AssertionResult::getExpression() const { |
| 4909 | if (isFalseTest(m_info.resultDisposition)) |
| 4910 | return "!(" + m_info.capturedExpression + ")"; |
| 4911 | else |
| 4912 | return m_info.capturedExpression; |
| 4913 | } |
| 4914 | |
| 4915 | std::string AssertionResult::getExpressionInMacro() const { |
| 4916 | std::string expr; |
no test coverage detected