subsurface/tests/testplan.h
Rick Walsh 084b4152e4 TestPlan: Add test for repeating dive
If variables were accidentally carried through from a previous calculated plan,
subsequent plan could be affected.  This test aims to detect if this happens.
Commit 8994270 corrected such a bug.  If it were reverted, this test would fail
(as it should).

Signed-off-by: Rick Walsh <rickmwalsh@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-09-22 07:36:37 -07:00

20 lines
422 B
C++

#ifndef TESTPLAN_H
#define TESTPLAN_H
#include <QTest>
class TestPlan : public QObject {
Q_OBJECT
private slots:
void testImperial();
void testMetric();
void testVpmbMetric60m30minAir();
void testVpmbMetric60m30minEan50();
void testVpmbMetric60m30minTx();
void testVpmbMetricMultiLevelAir();
void testVpmbMetric100m60min();
void testVpmbMetric100m10min();
void testVpmbMetricRepeat();
};
#endif // TESTPLAN_H