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-09-17 07:42:29 +02:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_RESULTINFO_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_RESULTINFO_HPP_INCLUDED
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-08-08 09:50:38 +02:00
|
|
|
#include "catch_resultinfo.h"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-10-09 12:48:55 +02:00
|
|
|
ResultInfo::ResultInfo() {}
|
2012-08-08 09:50:38 +02:00
|
|
|
|
2012-10-05 19:35:01 +02:00
|
|
|
ResultInfo::ResultInfo( const ResultData& data ) : m_data( data ) {}
|
|
|
|
|
2012-08-08 09:50:38 +02:00
|
|
|
ResultInfo::~ResultInfo() {}
|
2011-01-11 20:48:48 +01:00
|
|
|
|
2012-08-08 09:50:38 +02:00
|
|
|
bool ResultInfo::ok() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return isOk( m_data.resultType );
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2011-01-11 20:48:48 +01:00
|
|
|
|
2012-08-08 09:50:38 +02:00
|
|
|
ResultWas::OfType ResultInfo::getResultType() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.resultType;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2010-11-11 08:21:57 +01:00
|
|
|
|
2012-08-08 09:50:38 +02:00
|
|
|
bool ResultInfo::hasExpression() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return !m_data.capturedExpression.empty();
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ResultInfo::hasMessage() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return !m_data.message.empty();
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResultInfo::getExpression() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.capturedExpression;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ResultInfo::hasExpandedExpression() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return hasExpression() && getExpandedExpression() != getExpression();
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResultInfo::getExpandedExpression() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.reconstructedExpression;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResultInfo::getMessage() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.message;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResultInfo::getFilename() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.lineInfo.file;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t ResultInfo::getLine() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.lineInfo.line;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string ResultInfo::getTestMacroName() const {
|
2012-10-09 12:48:55 +02:00
|
|
|
return m_data.macroName;
|
2012-08-08 09:50:38 +02:00
|
|
|
}
|
2011-03-01 10:55:17 +01:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_RESULTINFO_HPP_INCLUDED
|