mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef TESTMERGE_H
 | |
| #define TESTMERGE_H
 | |
| 
 | |
| #include <QtTest>
 | |
| 
 | |
| class TestMerge : public QObject {
 | |
| 	Q_OBJECT
 | |
| private slots:
 | |
| 	void initTestCase();
 | |
| 	void cleanup();
 | |
| 
 | |
| 	void testMergeEmpty();
 | |
| 	void testMergeBackwards();
 | |
| };
 | |
| 
 | |
| #endif
 |