mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
ee1bf18189
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
23 lines
526 B
C++
23 lines
526 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();
|
|
};
|
|
|
|
#endif // TESTPLAN_H
|