2012-08-08 09:50:38 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 28/10/2010.
|
|
|
|
* Copyright 2010 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)
|
|
|
|
*/
|
2012-09-17 07:42:29 +02:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_RESULTINFO_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_RESULTINFO_H_INCLUDED
|
2012-08-08 09:50:38 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "catch_result_type.h"
|
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
class ResultInfo {
|
|
|
|
public:
|
|
|
|
ResultInfo();
|
|
|
|
ResultInfo( const char* expr,
|
|
|
|
ResultWas::OfType result,
|
|
|
|
bool isNot,
|
|
|
|
const SourceLineInfo& lineInfo,
|
|
|
|
const char* macroName,
|
|
|
|
const char* message );
|
2012-08-13 08:46:10 +02:00
|
|
|
~ResultInfo();
|
2012-08-08 09:50:38 +02:00
|
|
|
|
|
|
|
bool ok() const;
|
|
|
|
ResultWas::OfType getResultType() const;
|
|
|
|
bool hasExpression() const;
|
|
|
|
bool hasMessage() const;
|
|
|
|
std::string getExpression() const;
|
|
|
|
bool hasExpandedExpression() const;
|
|
|
|
std::string getExpandedExpression() const;
|
|
|
|
std::string getMessage() const;
|
|
|
|
std::string getFilename() const;
|
|
|
|
std::size_t getLine() const;
|
|
|
|
std::string getTestMacroName() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
std::string getExpandedExpressionInternal() const;
|
|
|
|
bool isNotExpression( const char* expr );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string m_macroName;
|
|
|
|
SourceLineInfo m_lineInfo;
|
|
|
|
std::string m_expr, m_lhs, m_rhs, m_op;
|
|
|
|
std::string m_message;
|
|
|
|
ResultWas::OfType m_result;
|
|
|
|
bool m_isNot;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_RESULTINFO_H_INCLUDED
|