mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	First cut of new filtering mechanism
This commit is contained in:
		@@ -24,6 +24,10 @@
 | 
			
		||||
#include "catch_resultinfo_builder.hpp"
 | 
			
		||||
#include "catch_test_case_info.hpp"
 | 
			
		||||
 | 
			
		||||
#include "../reporters/catch_reporter_basic.hpp"
 | 
			
		||||
#include "../reporters/catch_reporter_xml.hpp"
 | 
			
		||||
#include "../reporters/catch_reporter_junit.hpp"
 | 
			
		||||
 | 
			
		||||
namespace Catch {
 | 
			
		||||
    NonCopyable::~NonCopyable() {}
 | 
			
		||||
    IShared::~IShared() {}
 | 
			
		||||
@@ -52,6 +56,10 @@ namespace Catch {
 | 
			
		||||
 | 
			
		||||
    void Config::dummy() {}
 | 
			
		||||
 | 
			
		||||
    INTERNAL_CATCH_REGISTER_REPORTER( "basic", BasicReporter )
 | 
			
		||||
    INTERNAL_CATCH_REGISTER_REPORTER( "xml", XmlReporter )
 | 
			
		||||
    INTERNAL_CATCH_REGISTER_REPORTER( "junit", JunitReporter )
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef __clang__
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user