mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
1e59ccee41
See #958
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
/*
|
|
* 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
|
|
|
|
#include "catch_interfaces_registry_hub.h"
|
|
|
|
namespace Catch {
|
|
|
|
template<typename T>
|
|
class ReporterRegistrar {
|
|
|
|
class ReporterFactory : public IReporterFactory {
|
|
|
|
virtual IStreamingReporterPtr create( ReporterConfig const& config ) const override {
|
|
return std::unique_ptr<T>( new T( config ) );
|
|
}
|
|
|
|
virtual std::string getDescription() const override {
|
|
return T::getDescription();
|
|
}
|
|
};
|
|
|
|
public:
|
|
|
|
ReporterRegistrar( std::string const& name ) {
|
|
getMutableRegistryHub().registerReporter( name, std::make_shared<ReporterFactory>() );
|
|
}
|
|
};
|
|
|
|
template<typename T>
|
|
class ListenerRegistrar {
|
|
|
|
class ListenerFactory : public IReporterFactory {
|
|
|
|
virtual IStreamingReporterPtr create( ReporterConfig const& config ) const override {
|
|
return std::make_shared<T>( config );
|
|
}
|
|
virtual std::string getDescription() const override {
|
|
return std::string();
|
|
}
|
|
};
|
|
|
|
public:
|
|
|
|
ListenerRegistrar() {
|
|
getMutableRegistryHub().registerListener( std::make_shared<ListenerFactory>() );
|
|
}
|
|
};
|
|
}
|
|
|
|
#define INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType ) \
|
|
namespace{ Catch::ReporterRegistrar<reporterType> catch_internal_RegistrarFor##reporterType( name ); }
|
|
|
|
// Deprecated - use the form without INTERNAL_
|
|
#define INTERNAL_CATCH_REGISTER_LISTENER( listenerType ) \
|
|
namespace{ Catch::ListenerRegistrar<listenerType> catch_internal_RegistrarFor##listenerType; }
|
|
|
|
#define CATCH_REGISTER_LISTENER( listenerType ) \
|
|
namespace{ Catch::ListenerRegistrar<listenerType> catch_internal_RegistrarFor##listenerType; }
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRARS_HPP_INCLUDED
|