| 16 | resultType(_resultType) {} |
| 17 | |
| 18 | std::string AssertionResultData::reconstructExpression() const { |
| 19 | |
| 20 | if( reconstructedExpression.empty() ) { |
| 21 | if( lazyExpression ) { |
| 22 | ReusableStringStream rss; |
| 23 | rss << lazyExpression; |
| 24 | reconstructedExpression = rss.str(); |
| 25 | } |
| 26 | } |
| 27 | return reconstructedExpression; |
| 28 | } |
| 29 | |
| 30 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData&& data ) |
| 31 | : m_info( info ), |
no test coverage detected