Go to the source code of this file.
◆ CATCH_REGISTER_LISTENER
#define CATCH_REGISTER_LISTENER |
( |
| listenerType | ) |
|
Value: CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
#define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS
Definition at line 65 of file catch_reporter_registrars.hpp.
65#define CATCH_REGISTER_LISTENER( listenerType ) \
66 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
67 namespace{ Catch::ListenerRegistrar<listenerType> catch_internal_RegistrarFor##listenerType; } \
68 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS
◆ CATCH_REGISTER_REPORTER
#define CATCH_REGISTER_REPORTER |
( |
| name, |
|
|
| reporterType ) |
Value: CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
#define CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
Definition at line 60 of file catch_reporter_registrars.hpp.
60#define CATCH_REGISTER_REPORTER( name, reporterType ) \
61 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
62 namespace{ Catch::ReporterRegistrar<reporterType> catch_internal_RegistrarFor##reporterType( name ); } \
63 CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS