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 {
|
|
|
|
|
|
|
|
auto makeTestInvoker( void(*testAsFunction)() ) noexcept -> ITestInvoker* {
|
|
|
|
return new(std::nothrow) TestInvokerAsFunction( testAsFunction );
|
|
|
|
}
|
|
|
|
|
2018-03-02 16:22:18 +01:00
|
|
|
NameAndTags::NameAndTags( StringRef const& name_ , StringRef const& tags_ ) noexcept : name( name_ ), tags( tags_ ) {}
|
2017-07-25 22:41:35 +02:00
|
|
|
|
2018-03-02 16:22:18 +01:00
|
|
|
AutoReg::AutoReg( 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(
|
|
|
|
makeTestCase(
|
|
|
|
invoker,
|
2017-08-14 09:54:57 +02:00
|
|
|
extractClassName( classOrMethod ),
|
2018-03-02 16:22:18 +01:00
|
|
|
nameAndTags,
|
2017-07-25 22:41:35 +02:00
|
|
|
lineInfo));
|
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
|
|
|
}
|
|
|
|
}
|
2018-03-02 16:22:18 +01:00
|
|
|
|
2017-09-07 16:51:33 +02:00
|
|
|
AutoReg::~AutoReg() = default;
|
2017-07-25 22:41:35 +02:00
|
|
|
}
|