| 6167 | resultType(_resultType) {} |
| 6168 | |
| 6169 | std::string AssertionResultData::reconstructExpression() const { |
| 6170 | |
| 6171 | if( reconstructedExpression.empty() ) { |
| 6172 | if( lazyExpression ) { |
| 6173 | ReusableStringStream rss; |
| 6174 | rss << lazyExpression; |
| 6175 | reconstructedExpression = rss.str(); |
| 6176 | } |
| 6177 | } |
| 6178 | return reconstructedExpression; |
| 6179 | } |
| 6180 | |
| 6181 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 6182 | : m_info( info ), |
no test coverage detected