mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-08 23:29:53 +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_resultinfo.h"
|
|
#include "catch_result_type.h"
|
|
#include "catch_evaluate.hpp"
|
|
#include "catch_common.h"
|
|
|
|
namespace Catch {
|
|
|
|
struct STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison;
|
|
|
|
class AssertionResultBuilder {
|
|
public:
|
|
|
|
AssertionResultBuilder();
|
|
|
|
AssertionResultBuilder& setResultType( ResultWas::OfType result );
|
|
AssertionResultBuilder& setCapturedExpression( const std::string& capturedExpression );
|
|
AssertionResultBuilder& setIsFalse( bool isFalse );
|
|
AssertionResultBuilder& setMessage( const std::string& message );
|
|
AssertionResultBuilder& setLineInfo( const SourceLineInfo& lineInfo );
|
|
AssertionResultBuilder& setLhs( const std::string& lhs );
|
|
AssertionResultBuilder& setRhs( const std::string& rhs );
|
|
AssertionResultBuilder& setOp( const std::string& op );
|
|
AssertionResultBuilder& setMacroName( const std::string& macroName );
|
|
|
|
std::string reconstructExpression() const;
|
|
|
|
AssertionResult build() const;
|
|
|
|
// Disable attempts to use || and && in expressions (without parantheses)
|
|
template<typename RhsT>
|
|
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator || ( const RhsT& );
|
|
template<typename RhsT>
|
|
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator && ( const RhsT& );
|
|
|
|
bool getIsFalse() const {
|
|
return m_isFalse;
|
|
}
|
|
|
|
private:
|
|
ResultData m_data;
|
|
std::string m_lhs, m_rhs, m_op;
|
|
bool m_isFalse;
|
|
};
|
|
|
|
} // end namespace Catch
|
|
|
|
#endif // TWOBLUECUBES_CATCH_ASSERTIONRESULT_BUILDER_H_INCLUDED
|