mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 00:51:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			941 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			941 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 *  Created by Phil on 14/02/2012.
 | 
						|
 *  Copyright 2012 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)
 | 
						|
 */
 | 
						|
 | 
						|
#define CATCH_CONFIG_MAIN
 | 
						|
#include "catch_self_test.hpp"
 | 
						|
 | 
						|
namespace Catch{
 | 
						|
    
 | 
						|
    NullStreamingReporter::~NullStreamingReporter() {}
 | 
						|
 | 
						|
    Totals EmbeddedRunner::runMatching( const std::string& rawTestSpec, std::size_t groupIndex, std::size_t groupsCount, const std::string& ) {
 | 
						|
        std::ostringstream oss;
 | 
						|
        Config config;
 | 
						|
        config.setStreamBuf( oss.rdbuf() );
 | 
						|
        
 | 
						|
        Totals totals;
 | 
						|
 | 
						|
        // Scoped because Runner doesn't report EndTesting until its destructor
 | 
						|
        {
 | 
						|
            Runner runner( config, m_reporter.get() );
 | 
						|
            totals = runner.runMatching( rawTestSpec, groupIndex, groupsCount );
 | 
						|
        }
 | 
						|
        return totals;
 | 
						|
    }
 | 
						|
 | 
						|
}
 |