This adds a test for 100 m for 60 min dive on trimix using VPM-B Signed-off-by: Rick Walsh <rickmwalsh@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
249 B
C++
16 lines
249 B
C++
#ifndef TESTPLAN_H
|
|
#define TESTPLAN_H
|
|
|
|
#include <QTest>
|
|
|
|
class TestPlan : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void testImperial();
|
|
void testMetric();
|
|
void testVpmbMetric100m60min();
|
|
void testVpmbMetric100m10min();
|
|
};
|
|
|
|
#endif // TESTPLAN_H
|