2012-05-08 20:29:51 +02:00
|
|
|
/*
|
2012-08-08 09:58:28 +02:00
|
|
|
* Created by Phil on 8/8/2012.
|
2012-05-08 20:29:51 +02:00
|
|
|
* 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-08 20:29:51 +02:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
namespace Catch {
|
2012-05-08 20:29:51 +02:00
|
|
|
|
2012-08-08 09:58:28 +02:00
|
|
|
ResultInfoBuilder::ResultInfoBuilder( const char* expr,
|
|
|
|
bool isNot,
|
|
|
|
const SourceLineInfo& lineInfo,
|
2012-10-04 09:09:09 +02:00
|
|
|
const char* macroName )
|
|
|
|
: ResultInfo( expr, ResultWas::Unknown, isNot, lineInfo, macroName, "" )
|
2012-05-08 20:29:51 +02:00
|
|
|
{}
|
|
|
|
|
2012-10-04 09:09:09 +02:00
|
|
|
ResultInfoBuilder::ResultInfoBuilder() {}
|
|
|
|
|
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setResultType( ResultWas::OfType result ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
// 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-10-04 09:09:09 +02:00
|
|
|
return *this;
|
2012-05-08 20:29:51 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 09:09:09 +02:00
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setMessage( const std::string& message ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
m_message = message;
|
2012-10-04 09:09:09 +02:00
|
|
|
return *this;
|
2012-05-08 20:29:51 +02:00
|
|
|
}
|
2012-08-08 09:58:28 +02:00
|
|
|
|
2012-10-04 09:09:09 +02:00
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setLineInfo( const SourceLineInfo& lineInfo ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
m_lineInfo = lineInfo;
|
2012-10-04 09:09:09 +02:00
|
|
|
return *this;
|
2012-05-08 20:29:51 +02:00
|
|
|
}
|
2012-08-08 09:58:28 +02:00
|
|
|
|
2012-10-04 09:09:09 +02:00
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setLhs( const std::string& lhs ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
m_lhs = lhs;
|
2012-10-04 09:09:09 +02:00
|
|
|
return *this;
|
2012-05-08 20:29:51 +02:00
|
|
|
}
|
2012-08-08 09:58:28 +02:00
|
|
|
|
2012-10-04 09:09:09 +02:00
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setRhs( const std::string& rhs ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
m_rhs = rhs;
|
2012-10-04 09:09:09 +02:00
|
|
|
return *this;
|
2012-05-08 20:29:51 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 09:09:09 +02:00
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setOp( const std::string& op ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
m_op = op;
|
2012-10-04 09:09:09 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultInfoBuilder& ResultInfoBuilder::setMacroName( const std::string& macroName ) {
|
|
|
|
m_macroName = macroName;
|
|
|
|
return *this;
|
2012-05-08 20:29:51 +02:00
|
|
|
}
|
|
|
|
|
2012-08-08 09:58:28 +02:00
|
|
|
ResultInfoBuilder& ResultInfoBuilder::captureBoolExpression( bool result ) {
|
2012-05-08 20:29:51 +02:00
|
|
|
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
|
|
|
|
2012-05-08 20:29:51 +02:00
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_RESULTINFO_BUILDER_HPP_INCLUDED
|