2011-01-11 04:13:31 -05: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 03:57:51 -05:00
|
|
|
#include "catch_totals.hpp"
|
2012-09-28 14:21:14 -04:00
|
|
|
#include "catch_common.h"
|
2011-01-11 04:13:31 -05:00
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
namespace Catch {
|
|
|
|
|
2011-01-11 04:13:31 -05:00
|
|
|
class TestCaseInfo;
|
|
|
|
class ScopedInfo;
|
2012-10-26 03:45:23 -04:00
|
|
|
class ExpressionResultBuilder;
|
2012-10-16 03:27:21 -04:00
|
|
|
class AssertionResult;
|
2012-10-17 03:14:22 -04:00
|
|
|
struct AssertionInfo;
|
2011-01-11 04:13:31 -05:00
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
struct IResultCapture {
|
|
|
|
|
2012-08-13 02:46:10 -04:00
|
|
|
virtual ~IResultCapture();
|
2011-01-26 18:23:33 -05:00
|
|
|
|
2012-10-16 03:27:21 -04:00
|
|
|
virtual void testEnded( const AssertionResult& result ) = 0;
|
2012-05-15 03:02:36 -04: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-26 18:23:33 -05:00
|
|
|
|
2012-10-29 15:55:13 -04:00
|
|
|
virtual ResultAction::Value acceptExpression( const ExpressionResultBuilder& assertionResult, const AssertionInfo& assertionInfo ) = 0;
|
2011-01-11 04:13:31 -05:00
|
|
|
|
2012-05-15 03:02:36 -04:00
|
|
|
virtual std::string getCurrentTestName() const = 0;
|
2012-10-16 03:27:21 -04:00
|
|
|
virtual const AssertionResult* getLastResult() const = 0;
|
2011-01-11 04:13:31 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_INTERFACES_CAPTURE_H_INCLUDED
|