| 8289 | resultType(_resultType) {} |
| 8290 | |
| 8291 | std::string AssertionResultData::reconstructExpression() const { |
| 8292 | |
| 8293 | if( reconstructedExpression.empty() ) { |
| 8294 | if( lazyExpression ) { |
| 8295 | ReusableStringStream rss; |
| 8296 | rss << lazyExpression; |
| 8297 | reconstructedExpression = rss.str(); |
| 8298 | } |
| 8299 | } |
| 8300 | return reconstructedExpression; |
| 8301 | } |
| 8302 | |
| 8303 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 8304 | : m_info( info ), |
no test coverage detected