mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-03 21:49:32 +01:00 
			
		
		
		
	Fix for JUnit reporter when using dynamically generated sections (#963)
* BySectionInfo should also take into account the section name in addition to the source code line
This commit is contained in:
		
				
					committed by
					
						
						Martin Hořeňovský
					
				
			
			
				
	
			
			
			
						parent
						
							cde987a92e
						
					
				
				
					commit
					4f72202c04
				
			@@ -125,10 +125,11 @@ namespace Catch {
 | 
				
			|||||||
        };
 | 
					        };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        struct BySectionInfo {
 | 
					        struct BySectionInfo {
 | 
				
			||||||
            BySectionInfo(SectionInfo const& other) : m_other(other) {}
 | 
					            BySectionInfo( SectionInfo const& other ) : m_other( other ) {}
 | 
				
			||||||
            BySectionInfo(BySectionInfo const& other) : m_other(other.m_other) {}
 | 
					            BySectionInfo( BySectionInfo const& other ) : m_other( other.m_other ) {}
 | 
				
			||||||
            bool operator() (std::shared_ptr<SectionNode> const& node) const {
 | 
					            bool operator() (std::shared_ptr<SectionNode> const& node) const {
 | 
				
			||||||
                return node->stats.sectionInfo.lineInfo == m_other.lineInfo;
 | 
					                return ((node->stats.sectionInfo.name == m_other.name) &&
 | 
				
			||||||
 | 
					                        (node->stats.sectionInfo.lineInfo == m_other.lineInfo));
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            void operator=(BySectionInfo const&) = delete;
 | 
					            void operator=(BySectionInfo const&) = delete;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user