mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-09 15:49:53 +01:00
49 lines
1.0 KiB
C++
49 lines
1.0 KiB
C++
|
/*
|
||
|
* catch_hub.hpp
|
||
|
* Test
|
||
|
*
|
||
|
* 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_HUB_HPP_INCLUDED
|
||
|
#define TWOBLUECUBES_CATCH_HUB_HPP_INCLUDED
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
namespace Catch
|
||
|
{
|
||
|
struct IResultListener;
|
||
|
struct IReporterRegistry;
|
||
|
struct ITestCaseRegistry;
|
||
|
|
||
|
class Hub
|
||
|
{
|
||
|
public:
|
||
|
Hub();
|
||
|
|
||
|
static IResultListener* getListener();
|
||
|
static IReporterRegistry* getReporterRegistry();
|
||
|
static ITestCaseRegistry* getTestCaseRegistry();
|
||
|
|
||
|
private:
|
||
|
std::auto_ptr<IReporterRegistry> m_reporterRegistry;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
////// -- new file --
|
||
|
|
||
|
#include "catch_reporter_registry.hpp"
|
||
|
|
||
|
namespace Catch
|
||
|
{
|
||
|
inline Hub::Hub()
|
||
|
: m_reporterRegistry( new ReporterRegistry )
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // TWOBLUECUBES_CATCH_HUB_HPP_INCLUDED
|