catch2/include/internal/catch_hub.h

103 lines
2.4 KiB
C
Raw Normal View History

/*
* catch_hub.h
2011-01-11 10:13:31 +01:00
* Catch
*
* 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_H_INCLUDED
#define TWOBLUECUBES_CATCH_HUB_H_INCLUDED
#include "catch_interfaces_reporter.h"
#include <memory>
2011-01-07 11:01:40 +01:00
#include <vector>
#include <stdlib.h>
namespace Catch
{
2011-01-11 20:48:48 +01:00
class TestCaseInfo;
2011-01-11 10:13:31 +01:00
struct IResultCapture;
struct ITestCaseRegistry;
struct IRunner;
2011-04-20 16:40:40 +02:00
struct IExceptionTranslatorRegistry;
2011-01-27 00:23:33 +01:00
class GeneratorsForTest;
class StreamBufBase : public std::streambuf
{
};
2011-01-07 11:01:40 +01:00
class Hub
{
Hub();
2011-01-11 20:48:48 +01:00
2011-01-07 11:01:40 +01:00
static Hub& me();
Hub( const Hub& );
void operator=( const Hub& );
public:
2011-01-11 20:48:48 +01:00
static void setRunner
( IRunner* runner
);
static void setResultCapture
( IResultCapture* resultCapture
);
static IResultCapture& getResultCapture
();
static IReporterRegistry& getReporterRegistry
();
static ITestCaseRegistry& getTestCaseRegistry
();
2011-04-20 16:40:40 +02:00
static IExceptionTranslatorRegistry& getExceptionTranslatorRegistry
();
static std::streambuf* createStreamBuf
( const std::string& streamName
);
2011-01-11 20:48:48 +01:00
static IRunner& getRunner
();
2011-01-27 00:23:33 +01:00
static size_t getGeneratorIndex
( const std::string& fileInfo,
size_t totalSize
);
2011-01-28 19:56:26 +01:00
2011-01-27 00:23:33 +01:00
static bool advanceGeneratorsForCurrentTest
2011-01-28 19:56:26 +01:00
();
2011-01-27 00:23:33 +01:00
static void cleanUp
();
private:
static Hub*& singleInstance();
2011-01-27 00:23:33 +01:00
GeneratorsForTest* findGeneratorsForCurrentTest
();
2011-01-28 19:56:26 +01:00
2011-01-27 00:23:33 +01:00
GeneratorsForTest& getGeneratorsForCurrentTest
();
std::auto_ptr<IReporterRegistry> m_reporterRegistry;
2011-01-07 11:01:40 +01:00
std::auto_ptr<ITestCaseRegistry> m_testCaseRegistry;
2011-04-20 16:40:40 +02:00
std::auto_ptr<IExceptionTranslatorRegistry> m_exceptionTranslatorRegistry;
2011-01-11 10:13:31 +01:00
IRunner* m_runner;
IResultCapture* m_resultCapture;
2011-01-27 00:23:33 +01:00
std::map<std::string, GeneratorsForTest*> m_generatorsByTestName;
};
}
#endif // TWOBLUECUBES_CATCH_HUB_H_INCLUDED