| 8210 | resultType(_resultType) {} |
| 8211 | |
| 8212 | std::string AssertionResultData::reconstructExpression() const { |
| 8213 | |
| 8214 | if( reconstructedExpression.empty() ) { |
| 8215 | if( lazyExpression ) { |
| 8216 | ReusableStringStream rss; |
| 8217 | rss << lazyExpression; |
| 8218 | reconstructedExpression = rss.str(); |
| 8219 | } |
| 8220 | } |
| 8221 | return reconstructedExpression; |
| 8222 | } |
| 8223 | |
| 8224 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 8225 | : m_info( info ), |
no test coverage detected