mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-04 02:47:56 +00:00
First cut of StaticRegistries - separate from Context
This commit is contained in:
parent
5234b15ff4
commit
1091ca81e6
21 changed files with 222 additions and 141 deletions
|
@ -1,14 +1,73 @@
|
|||
//
|
||||
// catch_static_registries.hpp
|
||||
// CatchSelfTest
|
||||
//
|
||||
// Created by Phil Nash on 05/08/2012.
|
||||
//
|
||||
//
|
||||
/*
|
||||
* Created by Phil on 5/8/2012.
|
||||
* Copyright 2012 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)
|
||||
*/
|
||||
#include "catch_interfaces_static_registries.h"
|
||||
|
||||
#ifndef CatchSelfTest_catch_static_registries_hpp
|
||||
#define CatchSelfTest_catch_static_registries_hpp
|
||||
#include "catch_test_case_registry_impl.hpp"
|
||||
#include "catch_reporter_registry.hpp"
|
||||
#include "catch_exception_translator_registry.hpp"
|
||||
|
||||
namespace Catch {
|
||||
|
||||
namespace {
|
||||
|
||||
class StaticRegistries : public IStatics, public IStaticRegistries {
|
||||
|
||||
#endif
|
||||
StaticRegistries( const StaticRegistries& );
|
||||
void operator=( const StaticRegistries& );
|
||||
|
||||
public: // IStatics
|
||||
StaticRegistries() {
|
||||
}
|
||||
virtual const IReporterRegistry& getReporterRegistry() const {
|
||||
return m_reporterRegistry;
|
||||
}
|
||||
virtual const ITestCaseRegistry& getTestCaseRegistry() const {
|
||||
return m_testCaseRegistry;
|
||||
}
|
||||
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() {
|
||||
return m_exceptionTranslatorRegistry;
|
||||
}
|
||||
|
||||
public: // IStaticRegistries
|
||||
virtual void registerReporter( const std::string& name, IReporterFactory* factory ) {
|
||||
m_reporterRegistry.registerReporter( name, factory );
|
||||
}
|
||||
virtual void registerTest( const TestCaseInfo& testInfo ) {
|
||||
m_testCaseRegistry.registerTest( testInfo );
|
||||
}
|
||||
virtual void registerTranslator( const IExceptionTranslator* translator ) {
|
||||
m_exceptionTranslatorRegistry.registerTranslator( translator );
|
||||
}
|
||||
|
||||
private:
|
||||
TestRegistry m_testCaseRegistry;
|
||||
ReporterRegistry m_reporterRegistry;
|
||||
ExceptionTranslatorRegistry m_exceptionTranslatorRegistry;
|
||||
};
|
||||
|
||||
inline StaticRegistries*& getTheStaticRegistries() {
|
||||
static StaticRegistries* registries = NULL;
|
||||
if( !registries )
|
||||
registries = new StaticRegistries();
|
||||
return registries;
|
||||
}
|
||||
}
|
||||
|
||||
IStatics& getStatics() {
|
||||
return *getTheStaticRegistries();
|
||||
}
|
||||
IStaticRegistries& getStaticRegistries() {
|
||||
return *getTheStaticRegistries();
|
||||
}
|
||||
void cleanUp() {
|
||||
delete getTheStaticRegistries();
|
||||
getTheStaticRegistries() = NULL;
|
||||
Context::cleanUp();
|
||||
}
|
||||
|
||||
} // end namespace Catch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue