2010-12-31 23:07:47 +01:00
|
|
|
/*
|
2010-12-31 23:54:35 +01:00
|
|
|
* catch_hub.h
|
2011-01-11 10:13:31 +01:00
|
|
|
* Catch
|
2010-12-31 23:07:47 +01:00
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*
|
|
|
|
*/
|
2010-12-31 23:54:35 +01:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_HUB_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_HUB_H_INCLUDED
|
2010-12-31 23:07:47 +01:00
|
|
|
|
2011-02-04 10:30:36 +01:00
|
|
|
#include "catch_interfaces_reporter.h"
|
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
#include <memory>
|
2011-01-07 11:01:40 +01:00
|
|
|
#include <vector>
|
2011-02-04 10:30:36 +01:00
|
|
|
#include <stdlib.h>
|
2010-12-31 23:07:47 +01:00
|
|
|
|
|
|
|
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-01-27 00:23:33 +01:00
|
|
|
class GeneratorsForTest;
|
2011-01-18 10:20:06 +01:00
|
|
|
|
|
|
|
class StreamBufBase : public std::streambuf
|
|
|
|
{
|
|
|
|
};
|
2011-01-07 11:01:40 +01:00
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
class Hub
|
|
|
|
{
|
|
|
|
Hub();
|
2011-01-11 20:48:48 +01:00
|
|
|
|
2011-01-07 11:01:40 +01:00
|
|
|
static Hub& me();
|
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
Hub( const Hub& );
|
|
|
|
void operator=( const Hub& );
|
|
|
|
|
2010-12-31 23:21:36 +01:00
|
|
|
public:
|
2010-12-31 23:07:47 +01:00
|
|
|
|
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-01-18 10:20:06 +01:00
|
|
|
static std::streambuf* createStreamBuf
|
|
|
|
( const std::string& streamName
|
|
|
|
);
|
|
|
|
|
2011-01-11 20:48:48 +01:00
|
|
|
static IRunner& getRunner
|
|
|
|
();
|
2010-12-31 23:07:47 +01:00
|
|
|
|
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
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
private:
|
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
|
|
|
|
();
|
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
std::auto_ptr<IReporterRegistry> m_reporterRegistry;
|
2011-01-07 11:01:40 +01:00
|
|
|
std::auto_ptr<ITestCaseRegistry> m_testCaseRegistry;
|
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;
|
2010-12-31 23:07:47 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_HUB_H_INCLUDED
|