mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	For some reason, this test seems not to run effectively, at least locally, I had to update the reference file. Added a check that indeed the file to be compared was successfully opened. Signed-off-by: Robert C. Helling <helling@atdotde.de>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| 
 | |
| #ifndef TESTPROFILE_H
 | |
| #define TESTPROFILE_H
 | |
| 
 | |
| #include <QtTest>
 | |
| 
 | |
| class TestProfile : public QObject {
 | |
| 	Q_OBJECT
 | |
| private slots:
 | |
| 	void testProfileExport();
 | |
| 	void testProfileExportVPMB();
 | |
| };
 | |
| 
 | |
| #endif
 |