| 
									
										
										
										
											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 11:24:33 +01:00
										 |  |  | #include "catch_test_registry.h"
 | 
					
						
							|  |  |  | #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 { | 
					
						
							| 
									
										
										
										
											2017-07-25 22:41:35 +02:00
										 |  |  |         try { | 
					
						
							|  |  |  |             getMutableRegistryHub() | 
					
						
							|  |  |  |                     .registerTest( | 
					
						
							|  |  |  |                         makeTestCase( | 
					
						
							|  |  |  |                             invoker, | 
					
						
							| 
									
										
										
										
											2017-08-14 08:54:57 +01:00
										 |  |  |                             extractClassName( classOrMethod ), | 
					
						
							| 
									
										
										
										
											2018-03-02 16:22:18 +01:00
										 |  |  |                             nameAndTags, | 
					
						
							| 
									
										
										
										
											2017-07-25 22:41:35 +02:00
										 |  |  |                             lineInfo)); | 
					
						
							|  |  |  |         } catch (...) { | 
					
						
							|  |  |  |             // 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
										 |  |  | } |