2010-11-09 23:24:00 +00:00
|
|
|
/*
|
2012-08-08 08:50:38 +01:00
|
|
|
* Created by Phil on 8/8/12
|
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
2010-11-09 23:24:00 +00:00
|
|
|
*
|
|
|
|
|
* 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)
|
|
|
|
|
*/
|
2012-10-16 08:27:21 +01:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_ASSERTIONRESULT_HPP_INCLUDED
|
|
|
|
|
#define TWOBLUECUBES_CATCH_ASSERTIONRESULT_HPP_INCLUDED
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2012-10-16 08:31:05 +01:00
|
|
|
#include "catch_assertionresult.h"
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2012-05-15 07:42:26 +01:00
|
|
|
namespace Catch {
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
AssertionResult::AssertionResult() {}
|
2012-08-08 08:50:38 +01:00
|
|
|
|
2012-10-16 08:33:13 +01:00
|
|
|
AssertionResult::AssertionResult( const AssertionResultData& data ) : m_data( data ) {}
|
2012-10-05 18:35:01 +01:00
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
AssertionResult::~AssertionResult() {}
|
2011-01-11 19:48:48 +00:00
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::ok() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return isOk( m_data.resultType );
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
2011-01-11 19:48:48 +00:00
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
ResultWas::OfType AssertionResult::getResultType() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.resultType;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
2010-11-11 07:21:57 +00:00
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::hasExpression() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return !m_data.capturedExpression.empty();
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::hasMessage() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return !m_data.message.empty();
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getExpression() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.capturedExpression;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
bool AssertionResult::hasExpandedExpression() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return hasExpression() && getExpandedExpression() != getExpression();
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getExpandedExpression() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.reconstructedExpression;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getMessage() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.message;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getFilename() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.lineInfo.file;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::size_t AssertionResult::getLine() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.lineInfo.line;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
std::string AssertionResult::getTestMacroName() const {
|
2012-10-09 11:48:55 +01:00
|
|
|
return m_data.macroName;
|
2012-08-08 08:50:38 +01:00
|
|
|
}
|
2011-03-01 09:55:17 +00:00
|
|
|
|
2010-11-09 23:24:00 +00:00
|
|
|
} // end namespace Catch
|
|
|
|
|
|
2012-10-16 08:27:21 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_ASSERTIONRESULT_HPP_INCLUDED
|