catch2/include/internal/catch_assertionresult.hpp

68 lines
1.8 KiB
C++
Raw Normal View History

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