mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 00:51:52 +01:00 
			
		
		
		
	First cut of new AssertionHandler/ Decomposer
- integrated into INTERNAL_CATCH_TEST. Needs more work to fully replace existing stuff
This commit is contained in:
		@@ -13,7 +13,6 @@
 | 
			
		||||
#include "catch_interfaces_capture.h"
 | 
			
		||||
#include "catch_interfaces_registry_hub.h"
 | 
			
		||||
#include "catch_matchers_string.h"
 | 
			
		||||
#include "catch_wildcard_pattern.hpp"
 | 
			
		||||
#include "catch_debugger.h"
 | 
			
		||||
 | 
			
		||||
#include <cassert>
 | 
			
		||||
@@ -34,7 +33,8 @@ namespace Catch {
 | 
			
		||||
                                    SourceLineInfo const& lineInfo,
 | 
			
		||||
                                    StringRef capturedExpression,
 | 
			
		||||
                                    ResultDisposition::Flags resultDisposition )
 | 
			
		||||
    :   m_assertionInfo{ macroName, lineInfo, capturedExpression, resultDisposition }
 | 
			
		||||
    :   m_assertionInfo{ macroName, lineInfo, capturedExpression, resultDisposition },
 | 
			
		||||
        m_data( ResultWas::Unknown, LazyExpression( false ) )
 | 
			
		||||
    {
 | 
			
		||||
        getCurrentContext().getResultCapture()->assertionStarting( m_assertionInfo );
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user