1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-03-31 15:44:47 +02:00

Make REGISTER_TEST_CASE auto registering

This also means it can be used in global scope
This commit is contained in:
Martin Hořeňovský 2017-08-29 09:52:58 +02:00
parent 75f143835e
commit 3b8b25c59d

@ -93,7 +93,7 @@ struct AutoReg : NonCopyable {
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_REGISTER_TESTCASE( Function, ... ) \
CATCH_INTERNAL_SUPPRESS_ETD_WARNINGS \
Catch::AutoReg( Catch::makeTestInvoker( Function ), CATCH_INTERNAL_LINEINFO, "", Catch::NameAndTags{ __VA_ARGS__ } ); /* NOLINT */ \
Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( Function ), CATCH_INTERNAL_LINEINFO, "", Catch::NameAndTags{ __VA_ARGS__ } ); /* NOLINT */ \
CATCH_INTERNAL_UNSUPPRESS_ETD_WARNINGS