| 8296 | resultType(_resultType) {} |
| 8297 | |
| 8298 | std::string AssertionResultData::reconstructExpression() const { |
| 8299 | |
| 8300 | if( reconstructedExpression.empty() ) { |
| 8301 | if( lazyExpression ) { |
| 8302 | ReusableStringStream rss; |
| 8303 | rss << lazyExpression; |
| 8304 | reconstructedExpression = rss.str(); |
| 8305 | } |
| 8306 | } |
| 8307 | return reconstructedExpression; |
| 8308 | } |
| 8309 | |
| 8310 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 8311 | : m_info( info ), |
no test coverage detected