mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This tests for the planner getting the gases in the manually entered part of the dive wrong (as here: from incorrect value returned by get_gasmix_at_time. Signed-off-by: Robert C. Helling <helling@atdotde.de>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			553 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			553 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();
 | |
| 	void testMultipleGases();
 | |
| };
 | |
| 
 | |
| #endif // TESTPLAN_H
 |