2017-07-25 22:41:35 +02:00
|
|
|
/*
|
|
|
|
* Created by Martin on 25/07/2017.
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
|
2017-09-07 12:24:33 +02:00
|
|
|
#include "catch_test_registry.h"
|
2018-09-03 17:52:48 +02:00
|
|
|
#include "catch_compiler_capabilities.h"
|
2017-09-07 12:24:33 +02:00
|
|
|
#include "catch_test_case_registry_impl.h"
|
2017-07-25 22:41:35 +02:00
|
|
|
#include "catch_interfaces_registry_hub.h"
|
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
2019-11-04 21:35:57 +01:00
|
|
|
std::unique_ptr<ITestInvoker> makeTestInvoker( void(*testAsFunction)() ) {
|
|
|
|
return std::make_unique<TestInvokerAsFunction>( testAsFunction );
|
2017-07-25 22:41:35 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 21:35:57 +01:00
|
|
|
AutoReg::AutoReg( std::unique_ptr<ITestInvoker> invoker, SourceLineInfo const& lineInfo, StringRef const& classOrMethod, NameAndTags const& nameAndTags ) noexcept {
|
2018-09-03 17:52:48 +02:00
|
|
|
CATCH_TRY {
|
2017-07-25 22:41:35 +02:00
|
|
|
getMutableRegistryHub()
|
|
|
|
.registerTest(
|
2019-11-04 21:35:57 +01:00
|
|
|
makeTestCaseInfo(
|
2017-08-14 09:54:57 +02:00
|
|
|
extractClassName( classOrMethod ),
|
2018-03-02 16:22:18 +01:00
|
|
|
nameAndTags,
|
2019-11-04 21:35:57 +01:00
|
|
|
lineInfo),
|
|
|
|
std::move(invoker));
|
2018-09-03 17:52:48 +02:00
|
|
|
} CATCH_CATCH_ALL {
|
2017-07-25 22:41:35 +02:00
|
|
|
// Do not throw when constructing global objects, instead register the exception to be processed later
|
2017-07-27 12:24:52 +02:00
|
|
|
getMutableRegistryHub().registerStartupException();
|
2017-07-25 22:41:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|