| 8228 | resultType(_resultType) {} |
| 8229 | |
| 8230 | std::string AssertionResultData::reconstructExpression() const { |
| 8231 | |
| 8232 | if( reconstructedExpression.empty() ) { |
| 8233 | if( lazyExpression ) { |
| 8234 | ReusableStringStream rss; |
| 8235 | rss << lazyExpression; |
| 8236 | reconstructedExpression = rss.str(); |
| 8237 | } |
| 8238 | } |
| 8239 | return reconstructedExpression; |
| 8240 | } |
| 8241 | |
| 8242 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 8243 | : m_info( info ), |
no test coverage detected