| 7983 | resultType(_resultType) {} |
| 7984 | |
| 7985 | std::string AssertionResultData::reconstructExpression() const { |
| 7986 | |
| 7987 | if( reconstructedExpression.empty() ) { |
| 7988 | if( lazyExpression ) { |
| 7989 | ReusableStringStream rss; |
| 7990 | rss << lazyExpression; |
| 7991 | reconstructedExpression = rss.str(); |
| 7992 | } |
| 7993 | } |
| 7994 | return reconstructedExpression; |
| 7995 | } |
| 7996 | |
| 7997 | AssertionResult::AssertionResult( AssertionInfo const& info, AssertionResultData const& data ) |
| 7998 | : m_info( info ), |
no test coverage detected