catch2/internal/catch_hub.h

92 lines
2.1 KiB
C
Raw Normal View History

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