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