mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
e47f62f869
Add more VPM-B planner tests. The "expected" total run time is taken as the total run time produced by the Fortran VPM-B program. For all these tests, the results are within two minutes, which is a good result, but most are classified as a "fail". Signed-off-by: Rick Walsh <rickmwalsh@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
19 lines
392 B
C++
19 lines
392 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();
|
|
};
|
|
|
|
#endif // TESTPLAN_H
|