subsurface/tests/testplan.h
Robert C. Helling 7e4c8c387b A test for gases used in the planner
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>
2018-10-30 15:33:43 +01:00

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