mirror of https://github.com/procxx/kepka.git
				
				
				
			
		
			
				
	
	
		
			101 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C++
		
	
	
	
/*
 | 
						|
 *  Created by Phil on 18/10/2010.
 | 
						|
 *  Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
 | 
						|
 *
 | 
						|
 *  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)
 | 
						|
 */
 | 
						|
#ifndef TWOBLUECUBES_CATCH_TEST_REGISTRY_HPP_INCLUDED
 | 
						|
#define TWOBLUECUBES_CATCH_TEST_REGISTRY_HPP_INCLUDED
 | 
						|
 | 
						|
#include "catch_common.h"
 | 
						|
#include "catch_interfaces_testcase.h"
 | 
						|
#include "catch_compiler_capabilities.h"
 | 
						|
#include "catch_stringref.h"
 | 
						|
 | 
						|
namespace Catch {
 | 
						|
 | 
						|
template<typename C>
 | 
						|
class TestInvokerAsMethod : public ITestInvoker {
 | 
						|
    void (C::*m_testAsMethod)();
 | 
						|
public:
 | 
						|
    TestInvokerAsMethod( void (C::*testAsMethod)() ) noexcept : m_testAsMethod( testAsMethod ) {}
 | 
						|
 | 
						|
    void invoke() const override {
 | 
						|
        C obj;
 | 
						|
        (obj.*m_testAsMethod)();
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
auto makeTestInvoker( void(*testAsFunction)() ) noexcept -> ITestInvoker*;
 | 
						|
 | 
						|
template<typename C>
 | 
						|
auto makeTestInvoker( void (C::*testAsMethod)() ) noexcept -> ITestInvoker* {
 | 
						|
    return new(std::nothrow) TestInvokerAsMethod<C>( testAsMethod );
 | 
						|
}
 | 
						|
 | 
						|
struct NameAndTags {
 | 
						|
    NameAndTags( StringRef const& name_ = StringRef(), StringRef const& tags_ = StringRef() ) noexcept;
 | 
						|
    StringRef name;
 | 
						|
    StringRef tags;
 | 
						|
};
 | 
						|
 | 
						|
struct AutoReg : NonCopyable {
 | 
						|
    AutoReg( ITestInvoker* invoker, SourceLineInfo const& lineInfo, StringRef const& classOrMethod, NameAndTags const& nameAndTags ) noexcept;
 | 
						|
    ~AutoReg();
 | 
						|
};
 | 
						|
 | 
						|
} // end namespace Catch
 | 
						|
 | 
						|
#if defined(CATCH_CONFIG_DISABLE)
 | 
						|
    #define INTERNAL_CATCH_TESTCASE_NO_REGISTRATION( TestName, ... ) \
 | 
						|
        static void TestName()
 | 
						|
    #define INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION( TestName, ClassName, ... ) \
 | 
						|
        namespace{                        \
 | 
						|
            struct TestName : ClassName { \
 | 
						|
                void test();              \
 | 
						|
            };                            \
 | 
						|
        }                                 \
 | 
						|
        void TestName::test()
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
    ///////////////////////////////////////////////////////////////////////////////
 | 
						|
    #define INTERNAL_CATCH_TESTCASE2( TestName, ... ) \
 | 
						|
        static void TestName(); \
 | 
						|
        CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
 | 
						|
        namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( &TestName ), CATCH_INTERNAL_LINEINFO, "", Catch::NameAndTags{ __VA_ARGS__ } ); } /* NOLINT */ \
 | 
						|
        CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
 | 
						|
        static void TestName()
 | 
						|
    #define INTERNAL_CATCH_TESTCASE( ... ) \
 | 
						|
        INTERNAL_CATCH_TESTCASE2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), __VA_ARGS__ )
 | 
						|
 | 
						|
    ///////////////////////////////////////////////////////////////////////////////
 | 
						|
    #define INTERNAL_CATCH_METHOD_AS_TEST_CASE( QualifiedMethod, ... ) \
 | 
						|
        CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
 | 
						|
        namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( &QualifiedMethod ), CATCH_INTERNAL_LINEINFO, "&" #QualifiedMethod, Catch::NameAndTags{ __VA_ARGS__ } ); } /* NOLINT */ \
 | 
						|
        CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
 | 
						|
 | 
						|
    ///////////////////////////////////////////////////////////////////////////////
 | 
						|
    #define INTERNAL_CATCH_TEST_CASE_METHOD2( TestName, ClassName, ... )\
 | 
						|
        CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
 | 
						|
        namespace{ \
 | 
						|
            struct TestName : ClassName{ \
 | 
						|
                void test(); \
 | 
						|
            }; \
 | 
						|
            Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar ) ( Catch::makeTestInvoker( &TestName::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ __VA_ARGS__ } ); /* NOLINT */ \
 | 
						|
        } \
 | 
						|
        CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS \
 | 
						|
        void TestName::test()
 | 
						|
    #define INTERNAL_CATCH_TEST_CASE_METHOD( ClassName, ... ) \
 | 
						|
        INTERNAL_CATCH_TEST_CASE_METHOD2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), ClassName, __VA_ARGS__ )
 | 
						|
 | 
						|
    ///////////////////////////////////////////////////////////////////////////////
 | 
						|
    #define INTERNAL_CATCH_REGISTER_TESTCASE( Function, ... ) \
 | 
						|
        CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
 | 
						|
        Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( Function ), CATCH_INTERNAL_LINEINFO, "", Catch::NameAndTags{ __VA_ARGS__ } ); /* NOLINT */ \
 | 
						|
        CATCH_INTERNAL_UNSUPPRESS_GLOBALS_WARNINGS
 | 
						|
 | 
						|
 | 
						|
#endif // TWOBLUECUBES_CATCH_TEST_REGISTRY_HPP_INCLUDED
 |