mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This requires the user to manually copy the large test file into the dives directory (because I really don't want to add this to the repo); instructions how to do that are displayed if the file is missing. Next it uses the git version of that same file (but prefetches it to try and remove the network speed from what is being measured). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef TESTPARSEPERFORMANCE_H
 | |
| #define TESTPARSEPERFORMANCE_H
 | |
| 
 | |
| #include <QtTest>
 | |
| 
 | |
| class TestParsePerformance : public QObject {
 | |
| 	Q_OBJECT
 | |
| private slots:
 | |
| 	void initTestCase();
 | |
| 	void init();
 | |
| 	void cleanup();
 | |
| 
 | |
| 	void parseSsrf();
 | |
| 	void parseGit();
 | |
| };
 | |
| 
 | |
| #endif
 |