catch2/include/internal/catch_context.cpp

70 lines
1.8 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_IMPL_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_CONTEXT_IMPL_HPP_INCLUDED
2012-05-10 09:17:06 +02:00
#include "catch_context.h"
2017-01-16 11:30:44 +01:00
#include "catch_common.h"
2012-05-16 09:02:20 +02:00
namespace Catch {
class Context : public IMutableContext, NonCopyable {
public: // IContext
2014-05-20 19:49:28 +02:00
virtual IResultCapture* getResultCapture() {
return m_resultCapture;
}
2014-05-20 19:49:28 +02:00
virtual IRunner* getRunner() {
return m_runner;
}
virtual IConfigPtr getConfig() const {
return m_config;
}
public: // IMutableContext
virtual void setResultCapture( IResultCapture* resultCapture ) {
m_resultCapture = resultCapture;
}
virtual void setRunner( IRunner* runner ) {
m_runner = runner;
}
virtual void setConfig( IConfigPtr const& config ) {
m_config = config;
}
friend IMutableContext& getCurrentMutableContext();
private:
private:
IConfigPtr m_config;
IRunner* m_runner = nullptr;
IResultCapture* m_resultCapture = nullptr;
};
namespace {
Context* currentContext = nullptr;
}
IMutableContext& getCurrentMutableContext() {
2012-06-05 11:13:52 +02:00
if( !currentContext )
currentContext = new Context();
return *currentContext;
}
IContext& getCurrentContext() {
return getCurrentMutableContext();
}
void cleanUpContext() {
delete currentContext;
currentContext = nullptr;
2011-01-27 00:23:33 +01:00
}
}
#endif // TWOBLUECUBES_CATCH_CONTEXT_IMPL_HPP_INCLUDED