| 701 | } |
| 702 | |
| 703 | std::string AssertionResult::getExpandedExpression() const { |
| 704 | std::string expr = m_resultData.reconstructExpression(); |
| 705 | return expr.empty() |
| 706 | ? getExpression() |
| 707 | : expr; |
| 708 | } |
| 709 | |
| 710 | StringRef AssertionResult::getMessage() const { |
| 711 | return m_resultData.message; |
no test coverage detected