2012-05-10 08:58:48 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 31/12/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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_CONTEXT_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_CONTEXT_H_INCLUDED
|
|
|
|
|
2012-08-07 09:18:48 +02:00
|
|
|
#include "catch_interfaces_generators.h"
|
2013-05-28 19:39:32 +02:00
|
|
|
#include "catch_ptr.hpp"
|
2012-05-10 08:58:48 +02:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-05-16 00:58:23 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-11-22 20:17:20 +01:00
|
|
|
class TestCase;
|
2012-09-26 19:36:58 +02:00
|
|
|
class Stream;
|
2012-05-10 08:58:48 +02:00
|
|
|
struct IResultCapture;
|
|
|
|
struct IRunner;
|
2012-08-07 09:18:48 +02:00
|
|
|
struct IGeneratorsForTest;
|
2012-08-28 09:20:18 +02:00
|
|
|
struct IConfig;
|
2012-05-10 08:58:48 +02:00
|
|
|
|
2012-05-21 19:52:09 +02:00
|
|
|
struct IContext
|
|
|
|
{
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~IContext();
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2014-05-20 19:49:28 +02:00
|
|
|
virtual IResultCapture* getResultCapture() = 0;
|
|
|
|
virtual IRunner* getRunner() = 0;
|
2013-04-23 19:58:56 +02:00
|
|
|
virtual size_t getGeneratorIndex( std::string const& fileInfo, size_t totalSize ) = 0;
|
2012-05-21 19:52:09 +02:00
|
|
|
virtual bool advanceGeneratorsForCurrentTest() = 0;
|
2013-05-28 19:51:53 +02:00
|
|
|
virtual Ptr<IConfig const> getConfig() const = 0;
|
2012-05-21 19:52:09 +02:00
|
|
|
};
|
2013-05-28 19:39:32 +02:00
|
|
|
|
2012-05-21 19:52:09 +02:00
|
|
|
struct IMutableContext : IContext
|
|
|
|
{
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~IMutableContext();
|
2012-05-21 19:52:09 +02:00
|
|
|
virtual void setResultCapture( IResultCapture* resultCapture ) = 0;
|
|
|
|
virtual void setRunner( IRunner* runner ) = 0;
|
2013-05-28 19:51:53 +02:00
|
|
|
virtual void setConfig( Ptr<IConfig const> const& config ) = 0;
|
2012-05-21 19:52:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
IContext& getCurrentContext();
|
2012-08-08 09:33:54 +02:00
|
|
|
IMutableContext& getCurrentMutableContext();
|
|
|
|
void cleanUpContext();
|
2013-04-23 19:58:56 +02:00
|
|
|
Stream createStream( std::string const& streamName );
|
2012-05-21 19:52:09 +02:00
|
|
|
|
2012-05-10 08:58:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_CONTEXT_H_INCLUDED
|