mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 21:29:54 +01:00
59 lines
2.0 KiB
C++
59 lines
2.0 KiB
C++
/*
|
|
* Created by Phil on 8/5/2012.
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
#ifndef TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_H_INCLUDED
|
|
#define TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_H_INCLUDED
|
|
|
|
#include "catch_tostring.hpp"
|
|
#include "catch_assertionresult.h"
|
|
#include "catch_result_type.h"
|
|
#include "catch_evaluate.hpp"
|
|
#include "catch_common.h"
|
|
|
|
namespace Catch {
|
|
|
|
// Wraps the (stringised versions of) the lhs, operator and rhs of an expression - as well as
|
|
// the result of evaluating it. This is used to build an AssertionResult object
|
|
class ExpressionResultBuilder {
|
|
public:
|
|
|
|
ExpressionResultBuilder( ResultWas::OfType resultType = ResultWas::Unknown );
|
|
ExpressionResultBuilder( const ExpressionResultBuilder& other );
|
|
ExpressionResultBuilder& operator=(const ExpressionResultBuilder& other );
|
|
|
|
ExpressionResultBuilder& setResultType( ResultWas::OfType result );
|
|
ExpressionResultBuilder& setResultType( bool result );
|
|
ExpressionResultBuilder& setLhs( const std::string& lhs );
|
|
ExpressionResultBuilder& setRhs( const std::string& rhs );
|
|
ExpressionResultBuilder& setOp( const std::string& op );
|
|
|
|
ExpressionResultBuilder& endExpression( ResultDisposition::Flags resultDisposition );
|
|
|
|
template<typename T>
|
|
ExpressionResultBuilder& operator << ( const T& value ) {
|
|
m_stream << value;
|
|
return *this;
|
|
}
|
|
|
|
std::string reconstructExpression( const AssertionInfo& info ) const;
|
|
|
|
AssertionResult buildResult( const AssertionInfo& info ) const;
|
|
|
|
private:
|
|
AssertionResultData m_data;
|
|
struct ExprComponents {
|
|
ExprComponents() : shouldNegate( false ) {}
|
|
bool shouldNegate;
|
|
std::string lhs, rhs, op;
|
|
} m_exprComponents;
|
|
std::ostringstream m_stream;
|
|
};
|
|
|
|
} // end namespace Catch
|
|
|
|
#endif // TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_H_INCLUDED
|