2017-04-27 20:21:27 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-07-04 09:12:54 -07:00
|
|
|
#ifndef TESTPLAN_H
|
|
|
|
#define TESTPLAN_H
|
|
|
|
|
|
|
|
#include <QTest>
|
|
|
|
|
|
|
|
class TestPlan : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void testMetric();
|
2017-03-15 22:28:36 +01:00
|
|
|
void testImperial();
|
|
|
|
void testVpmbMetric45m30minTx();
|
|
|
|
void testVpmbMetric60m10minTx();
|
2015-08-26 00:33:17 +10:00
|
|
|
void testVpmbMetric60m30minAir();
|
|
|
|
void testVpmbMetric60m30minEan50();
|
|
|
|
void testVpmbMetric60m30minTx();
|
2015-08-25 07:37:20 +10:00
|
|
|
void testVpmbMetric100m60min();
|
2017-03-15 22:28:36 +01:00
|
|
|
void testVpmbMetricMultiLevelAir();
|
2015-08-25 07:37:20 +10:00
|
|
|
void testVpmbMetric100m10min();
|
2015-09-23 00:32:26 +10:00
|
|
|
void testVpmbMetricRepeat();
|
2015-07-04 09:12:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TESTPLAN_H
|