2010-12-31 23:07:47 +01:00
|
|
|
/*
|
2010-12-31 23:54:35 +01:00
|
|
|
* catch_hub.h
|
2010-12-31 23:07:47 +01:00
|
|
|
* 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)
|
|
|
|
*
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
#include <memory>
|
2011-01-07 11:01:40 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2011-01-01 01:18:35 +01:00
|
|
|
#include "catch_interfaces_reporter.h"
|
2010-12-31 23:07:47 +01:00
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
2011-01-07 11:01:40 +01:00
|
|
|
struct TestCaseInfo;
|
2010-12-31 23:07:47 +01:00
|
|
|
struct IResultListener;
|
2011-01-07 11:01:40 +01:00
|
|
|
struct ITestCaseRegistry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual void registerTest
|
|
|
|
( const TestCaseInfo& testInfo
|
|
|
|
) = 0;
|
2010-12-31 23:07:47 +01:00
|
|
|
|
2011-01-07 11:01:40 +01:00
|
|
|
virtual const std::vector<TestCaseInfo>& getAllTests
|
|
|
|
() const = 0;
|
|
|
|
};
|
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
class Hub
|
|
|
|
{
|
|
|
|
Hub();
|
2011-01-07 11:01:40 +01:00
|
|
|
static Hub& me();
|
|
|
|
|
2010-12-31 23:21:36 +01:00
|
|
|
public:
|
2010-12-31 23:07:47 +01:00
|
|
|
|
2010-12-31 23:21:36 +01:00
|
|
|
static IResultListener& getListener();
|
|
|
|
static IReporterRegistry& getReporterRegistry();
|
|
|
|
static ITestCaseRegistry& getTestCaseRegistry();
|
2010-12-31 23:07:47 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::auto_ptr<IReporterRegistry> m_reporterRegistry;
|
2011-01-07 11:01:40 +01:00
|
|
|
std::auto_ptr<ITestCaseRegistry> m_testCaseRegistry;
|
2010-12-31 23:07:47 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-12-31 23:54:35 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_HUB_H_INCLUDED
|