mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			526 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			526 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef TESTPLAN_H
 | |
| #define TESTPLAN_H
 | |
| 
 | |
| #include <QTest>
 | |
| 
 | |
| class TestPlan : public QObject {
 | |
| 	Q_OBJECT
 | |
| private slots:
 | |
| 	void testMetric();
 | |
| 	void testImperial();
 | |
| 	void testVpmbMetric45m30minTx();
 | |
| 	void testVpmbMetric60m10minTx();
 | |
| 	void testVpmbMetric60m30minAir();
 | |
| 	void testVpmbMetric60m30minEan50();
 | |
| 	void testVpmbMetric60m30minTx();
 | |
| 	void testVpmbMetric100m60min();
 | |
| 	void testVpmbMetricMultiLevelAir();
 | |
| 	void testVpmbMetric100m10min();
 | |
| 	void testVpmbMetricRepeat();
 | |
| };
 | |
| 
 | |
| #endif // TESTPLAN_H
 |