| 6382 | resultType(_resultType) {} |
| 6383 | |
| 6384 | std::string AssertionResultData::reconstructExpression() const { |
| 6385 | |
| 6386 | if( reconstructedExpression.empty() ) { |
| 6387 | if( lazyExpression ) { |
| 6388 | ReusableStringStream rss; |
| 6389 | rss << lazyExpression; |
| 6390 | reconstructedExpression = rss.str(); |
| 6391 | } |
| 6392 | } |
| 6393 | return reconstructedExpression; |
| 6394 | } |
| 6395 | |
| 6396 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 6397 | : m_info( info ), |
no test coverage detected