catch2/include/internal/catch_resultinfo_builder.hpp

65 lines
2.1 KiB
C++
Raw Normal View History

/*
2012-08-08 09:58:28 +02:00
* Created by Phil on 8/8/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_RESULTINFO_BUILDER_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_RESULTINFO_BUILDER_HPP_INCLUDED
2012-08-08 09:58:28 +02:00
#include "catch_resultinfo_builder.h"
2012-05-15 08:42:26 +02:00
namespace Catch {
2012-08-08 09:58:28 +02:00
ResultInfoBuilder::ResultInfoBuilder() {}
2012-05-16 09:02:20 +02:00
2012-08-08 09:58:28 +02:00
ResultInfoBuilder::ResultInfoBuilder( const char* expr,
bool isNot,
const SourceLineInfo& lineInfo,
const char* macroName,
const char* message )
: ResultInfo( expr, ResultWas::Unknown, isNot, lineInfo, macroName, message )
{}
2012-08-08 09:58:28 +02:00
void ResultInfoBuilder::setResultType( ResultWas::OfType result ) {
// Flip bool results if isNot is set
if( m_isNot && result == ResultWas::Ok )
m_result = ResultWas::ExpressionFailed;
else if( m_isNot && result == ResultWas::ExpressionFailed )
m_result = ResultWas::Ok;
else
2012-08-08 09:58:28 +02:00
m_result = result;
}
2012-08-08 09:58:28 +02:00
void ResultInfoBuilder::setMessage( const std::string& message ) {
m_message = message;
}
2012-08-08 09:58:28 +02:00
void ResultInfoBuilder::setLineInfo( const SourceLineInfo& lineInfo ) {
m_lineInfo = lineInfo;
}
2012-08-08 09:58:28 +02:00
void ResultInfoBuilder::setLhs( const std::string& lhs ) {
m_lhs = lhs;
}
2012-08-08 09:58:28 +02:00
void ResultInfoBuilder::setRhs( const std::string& rhs ) {
m_rhs = rhs;
}
2012-08-08 09:58:28 +02:00
void ResultInfoBuilder::setOp( const std::string& op ) {
m_op = op;
}
2012-08-08 09:58:28 +02:00
ResultInfoBuilder& ResultInfoBuilder::captureBoolExpression( bool result ) {
m_lhs = Catch::toString( result );
m_op = m_isNot ? "!" : "";
setResultType( result ? ResultWas::Ok : ResultWas::ExpressionFailed );
return *this;
}
2012-08-08 09:58:28 +02:00
} // end namespace Catch
#endif // TWOBLUECUBES_CATCH_RESULTINFO_BUILDER_HPP_INCLUDED