catch2/include/internal/catch_context.h

46 lines
1.1 KiB
C
Raw Normal View History

/*
* 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
#include "catch_ptr.hpp"
#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;
2015-11-19 18:45:56 +01:00
struct IRunContext;
struct IConfig;
struct IContext
{
virtual ~IContext();
2015-11-19 18:45:56 +01:00
virtual IRunContext* getCurrentRunContext() = 0;
2015-11-19 08:35:35 +01:00
virtual IConfig const* getConfig() const = 0;
};
struct IMutableContext : IContext
{
virtual ~IMutableContext();
2015-11-19 18:45:56 +01:00
virtual void setResultCapture( IRunContext* resultCapture ) = 0;
virtual void setConfig( Ptr<IConfig const> const& config ) = 0;
};
IContext& getCurrentContext();
IMutableContext& getCurrentMutableContext();
void cleanUpContext();
2015-11-19 08:35:35 +01:00
IConfig const* getCurrentConfig();
}
#endif // TWOBLUECUBES_CATCH_CONTEXT_H_INCLUDED