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