| 632 | resultType(_resultType) {} |
| 633 | |
| 634 | std::string AssertionResultData::reconstructExpression() const { |
| 635 | |
| 636 | if( reconstructedExpression.empty() ) { |
| 637 | if( lazyExpression ) { |
| 638 | ReusableStringStream rss; |
| 639 | rss << lazyExpression; |
| 640 | reconstructedExpression = rss.str(); |
| 641 | } |
| 642 | } |
| 643 | return reconstructedExpression; |
| 644 | } |
| 645 | |
| 646 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData&& data ) |
| 647 | : m_info( info ), |
no test coverage detected