2011-01-11 10:13:31 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 07/01/2011.
|
|
|
|
* Copyright 2011 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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_INTERFACES_CAPTURE_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_INTERFACES_CAPTURE_H_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "catch_result_type.h"
|
2012-02-23 09:57:51 +01:00
|
|
|
#include "catch_totals.hpp"
|
2012-09-28 20:21:14 +02:00
|
|
|
#include "catch_common.h"
|
2011-01-11 10:13:31 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2011-01-11 10:13:31 +01:00
|
|
|
class TestCaseInfo;
|
|
|
|
class ScopedInfo;
|
2012-10-16 09:27:21 +02:00
|
|
|
class AssertionResultBuilder;
|
|
|
|
class AssertionResult;
|
2012-10-17 09:14:22 +02:00
|
|
|
struct AssertionInfo;
|
2011-01-11 10:13:31 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
struct IResultCapture {
|
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~IResultCapture();
|
2011-01-27 00:23:33 +01:00
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
virtual void testEnded( const AssertionResult& result ) = 0;
|
2012-05-15 09:02:36 +02:00
|
|
|
virtual bool sectionStarted( const std::string& name,
|
|
|
|
const std::string& description,
|
|
|
|
const SourceLineInfo& lineInfo,
|
|
|
|
Counts& assertions ) = 0;
|
|
|
|
virtual void sectionEnded( const std::string& name, const Counts& assertions ) = 0;
|
|
|
|
virtual void pushScopedInfo( ScopedInfo* scopedInfo ) = 0;
|
|
|
|
virtual void popScopedInfo( ScopedInfo* scopedInfo ) = 0;
|
|
|
|
virtual bool shouldDebugBreak() const = 0;
|
2011-01-27 00:23:33 +01:00
|
|
|
|
2012-10-17 09:14:22 +02:00
|
|
|
virtual void acceptAssertionInfo( const AssertionInfo& assertionInfo ) = 0;
|
2012-10-16 09:31:05 +02:00
|
|
|
virtual ResultAction::Value acceptExpression( const AssertionResultBuilder& assertionResult ) = 0;
|
2011-01-11 10:13:31 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
virtual std::string getCurrentTestName() const = 0;
|
2012-10-16 09:27:21 +02:00
|
|
|
virtual const AssertionResult* getLastResult() const = 0;
|
2011-01-11 10:13:31 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_INTERFACES_CAPTURE_H_INCLUDED
|