2010-12-31 23:46:51 +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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_REPORTER_REGISTRARS_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_REGISTRARS_HPP_INCLUDED
|
|
|
|
|
2012-05-10 08:58:48 +02:00
|
|
|
#include "catch_context.h"
|
2010-12-31 23:46:51 +01:00
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2010-12-31 23:46:51 +01:00
|
|
|
template<typename T>
|
2012-05-16 09:02:20 +02:00
|
|
|
class ReporterRegistrar {
|
|
|
|
|
|
|
|
class ReporterFactory : public IReporterFactory {
|
|
|
|
|
2012-07-20 20:07:42 +02:00
|
|
|
virtual IReporter* create( const ReporterConfig& config ) const {
|
2010-12-31 23:46:51 +01:00
|
|
|
return new T( config );
|
|
|
|
}
|
2012-05-16 09:02:20 +02:00
|
|
|
|
|
|
|
virtual std::string getDescription() const {
|
2010-12-31 23:46:51 +01:00
|
|
|
return T::getDescription();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
public:
|
2010-12-31 23:46:51 +01:00
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
ReporterRegistrar( const std::string& name ) {
|
2012-05-21 19:52:09 +02:00
|
|
|
getCurrentContext().getReporterRegistry().registerReporter( name, new ReporterFactory() );
|
2010-12-31 23:46:51 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-01-27 23:29:36 +01:00
|
|
|
#define INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType ) \
|
2010-12-31 23:46:51 +01:00
|
|
|
Catch::ReporterRegistrar<reporterType> catch_internal_RegistrarFor##reporterType( name );
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRARS_HPP_INCLUDED
|