From a8570dfdfe873e878984a6fd47eec05e6981aa15 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 24 May 2012 08:29:41 +0100 Subject: [PATCH] Regenerated single include --- single_include/catch.hpp | 79 ++++++++++------------------------------ 1 file changed, 20 insertions(+), 59 deletions(-) diff --git a/single_include/catch.hpp b/single_include/catch.hpp index b80cb1ad..db67e047 100644 --- a/single_include/catch.hpp +++ b/single_include/catch.hpp @@ -1,5 +1,5 @@ /* - * Generated: 2012-05-22 22:16:20.449820 + * Generated: 2012-05-24 08:29:19.524673 * ---------------------------------------------------------- * This file has been merged from multiple headers. Please don't edit it directly * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. @@ -1176,44 +1176,6 @@ private: T m_lhs; }; -template -class PtrExpression { -public: - - PtrExpression ( ResultInfoBuilder& result, const LhsT* lhs ) - : m_result( &result ), - m_lhs( lhs ) - {} - - template - ResultInfoBuilder& operator == ( const RhsT* rhs ) { - return m_result->captureExpression( m_lhs, rhs ); - } - - // This catches NULL - ResultInfoBuilder& operator == ( LhsT* rhs ) { - return m_result->captureExpression( m_lhs, rhs ); - } - - template - ResultInfoBuilder& operator != ( const RhsT* rhs ) { - return m_result->captureExpression( m_lhs, rhs ); - } - - // This catches NULL - ResultInfoBuilder& operator != ( LhsT* rhs ) { - return m_result->captureExpression( m_lhs, rhs ); - } - - operator ResultInfoBuilder& () { - return m_result->captureBoolExpression( m_lhs ); - } - -private: - ResultInfoBuilder* m_result; - const LhsT* m_lhs; -}; - } // end namespace Catch #include @@ -1237,23 +1199,6 @@ public: return expr; } - Expression operator->* ( const char* const& operand ) { - Expression expr( m_result, operand ); - return expr; - } - - template - PtrExpression operator->* ( const T* operand ) { - PtrExpression expr( m_result, operand ); - return expr; - } - - template - PtrExpression operator->* ( T* operand ) { - PtrExpression expr( m_result, operand ); - return expr; - } - Expression operator->* ( bool value ) { Expression expr( m_result, value ); return expr; @@ -1563,7 +1508,7 @@ inline bool isTrue( bool value ){ return value; } /////////////////////////////////////////////////////////////////////////////// #define INTERNAL_CHECK_THAT( arg, matcher, stopOnFailure, macroName ) \ do{ try{ \ - INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #arg " " #matcher, false ).acceptMatcher( matcher, arg, #matcher ) ), stopOnFailure, false ); \ + INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #arg " " #matcher, false ).acceptMatcher( ::Catch::Matchers::matcher, arg, #matcher ) ), stopOnFailure, false ); \ }catch( Catch::TestFailureException& ){ \ throw; \ } catch( ... ){ \ @@ -1931,6 +1876,22 @@ namespace Matchers { namespace Impl { namespace StdString { + struct Equals { + Equals( const std::string& str ) : m_str( str ){} + + bool operator()( const std::string& str ) const + { + return str == m_str; + } + + friend std::ostream& operator<<( std::ostream& os, const Equals& matcher ) + { + os << "equals: \"" << matcher.m_str << "\""; + return os; + } + std::string m_str; + }; + struct Contains { Contains( const std::string& substr ) : m_substr( substr ){} @@ -1981,6 +1942,7 @@ namespace Matchers { } // namespace StdString } // namespace Impl + inline Impl::StdString::Equals Equals( const std::string& str ){ return Impl::StdString::Equals( str ); } inline Impl::StdString::Contains Contains( const std::string& substr ){ return Impl::StdString::Contains( substr ); } inline Impl::StdString::StartsWith StartsWith( const std::string& substr ){ return Impl::StdString::StartsWith( substr ); } inline Impl::StdString::EndsWith EndsWith( const std::string& substr ){ return Impl::StdString::EndsWith( substr ); } @@ -2531,7 +2493,6 @@ namespace Catch { mutable std::ostream m_os; Include::What m_includeWhat; std::string m_name; - }; } // end namespace Catch @@ -4450,7 +4411,7 @@ namespace Catch { } xml.scopedElement( "system-out" ).writeText( trim( m_stdOut.str() ) ); - xml.scopedElement( "system-err" ).writeText( trim( m_stdOut.str() ) ); + xml.scopedElement( "system-err" ).writeText( trim( m_stdErr.str() ) ); } }