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>
|
2019-04-23 23:41:13 +02:00
|
|
|
#include <chrono>
|
2011-01-11 10:13:31 +01:00
|
|
|
|
2017-09-14 20:05:25 +02:00
|
|
|
#include "catch_stringref.h"
|
2017-12-05 17:18:53 +01:00
|
|
|
#include "catch_result_type.h"
|
2017-09-14 20:05:25 +02:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-10-16 09:27:21 +02:00
|
|
|
class AssertionResult;
|
2012-10-17 09:14:22 +02:00
|
|
|
struct AssertionInfo;
|
2012-11-30 09:58:46 +01:00
|
|
|
struct SectionInfo;
|
2015-09-27 03:12:21 +02:00
|
|
|
struct SectionEndInfo;
|
2013-06-28 18:09:57 +02:00
|
|
|
struct MessageInfo;
|
2019-02-01 16:11:30 +01:00
|
|
|
struct MessageBuilder;
|
2013-12-03 19:52:41 +01:00
|
|
|
struct Counts;
|
2017-12-05 17:18:53 +01:00
|
|
|
struct AssertionReaction;
|
2018-06-12 18:50:39 +02:00
|
|
|
struct SourceLineInfo;
|
2017-12-05 17:18:53 +01:00
|
|
|
|
|
|
|
struct ITransientExpression;
|
2018-06-12 18:50:39 +02:00
|
|
|
struct IGeneratorTracker;
|
2011-01-11 10:13:31 +01:00
|
|
|
|
2019-05-19 20:54:44 +02:00
|
|
|
#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
|
2019-04-23 23:41:13 +02:00
|
|
|
struct BenchmarkInfo;
|
|
|
|
template <typename Duration = std::chrono::duration<double, std::nano>>
|
|
|
|
struct BenchmarkStats;
|
2019-05-19 20:54:44 +02:00
|
|
|
#endif // CATCH_CONFIG_ENABLE_BENCHMARKING
|
2019-04-23 23:41:13 +02:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
struct IResultCapture {
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~IResultCapture();
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-11-30 09:58:46 +01:00
|
|
|
virtual bool sectionStarted( SectionInfo const& sectionInfo,
|
2012-05-15 09:02:36 +02:00
|
|
|
Counts& assertions ) = 0;
|
2015-09-27 03:12:21 +02:00
|
|
|
virtual void sectionEnded( SectionEndInfo const& endInfo ) = 0;
|
|
|
|
virtual void sectionEndedEarly( SectionEndInfo const& endInfo ) = 0;
|
2017-08-04 20:23:30 +02:00
|
|
|
|
2018-06-12 18:50:39 +02:00
|
|
|
virtual auto acquireGeneratorTracker( SourceLineInfo const& lineInfo ) -> IGeneratorTracker& = 0;
|
|
|
|
|
2019-05-19 20:54:44 +02:00
|
|
|
#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
|
2019-04-23 23:41:13 +02:00
|
|
|
virtual void benchmarkPreparing( std::string const& name ) = 0;
|
2017-08-04 20:23:30 +02:00
|
|
|
virtual void benchmarkStarting( BenchmarkInfo const& info ) = 0;
|
2019-04-23 23:41:13 +02:00
|
|
|
virtual void benchmarkEnded( BenchmarkStats<> const& stats ) = 0;
|
|
|
|
virtual void benchmarkFailed( std::string const& error ) = 0;
|
2019-05-19 20:54:44 +02:00
|
|
|
#endif // CATCH_CONFIG_ENABLE_BENCHMARKING
|
2017-08-04 20:23:30 +02:00
|
|
|
|
2013-06-28 18:09:57 +02:00
|
|
|
virtual void pushScopedMessage( MessageInfo const& message ) = 0;
|
|
|
|
virtual void popScopedMessage( MessageInfo const& message ) = 0;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2019-02-01 16:11:30 +01:00
|
|
|
virtual void emplaceUnscopedMessage( MessageBuilder const& builder ) = 0;
|
|
|
|
|
2017-09-14 20:05:25 +02:00
|
|
|
virtual void handleFatalErrorCondition( StringRef message ) = 0;
|
2017-06-26 21:30:23 +02:00
|
|
|
|
2017-12-05 17:18:53 +01:00
|
|
|
virtual void handleExpr
|
|
|
|
( AssertionInfo const& info,
|
|
|
|
ITransientExpression const& expr,
|
|
|
|
AssertionReaction& reaction ) = 0;
|
|
|
|
virtual void handleMessage
|
|
|
|
( AssertionInfo const& info,
|
|
|
|
ResultWas::OfType resultType,
|
|
|
|
StringRef const& message,
|
|
|
|
AssertionReaction& reaction ) = 0;
|
|
|
|
virtual void handleUnexpectedExceptionNotThrown
|
|
|
|
( AssertionInfo const& info,
|
|
|
|
AssertionReaction& reaction ) = 0;
|
|
|
|
virtual void handleUnexpectedInflightException
|
|
|
|
( AssertionInfo const& info,
|
|
|
|
std::string const& message,
|
|
|
|
AssertionReaction& reaction ) = 0;
|
|
|
|
virtual void handleIncomplete
|
|
|
|
( AssertionInfo const& info ) = 0;
|
|
|
|
virtual void handleNonExpr
|
|
|
|
( AssertionInfo const &info,
|
|
|
|
ResultWas::OfType resultType,
|
|
|
|
AssertionReaction &reaction ) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-26 21:30:23 +02:00
|
|
|
virtual bool lastAssertionPassed() = 0;
|
|
|
|
virtual void assertionPassed() = 0;
|
2017-12-02 17:32:02 +01:00
|
|
|
|
|
|
|
// Deprecated, do not use:
|
|
|
|
virtual std::string getCurrentTestName() const = 0;
|
|
|
|
virtual const AssertionResult* getLastResult() const = 0;
|
|
|
|
virtual void exceptionEarlyReported() = 0;
|
2011-01-11 10:13:31 +01:00
|
|
|
};
|
2014-05-28 19:53:01 +02:00
|
|
|
|
|
|
|
IResultCapture& getResultCapture();
|
2011-01-11 10:13:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_INTERFACES_CAPTURE_H_INCLUDED
|