Catch/include/internal/catch_resultinfo.hpp

68 lines
1.7 KiB
C++
Raw Normal View History

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