tests: add framework for plannerShared test

Add TestPlannerShared test (cpp + h)

Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
jan Iversen 2019-12-25 16:16:15 +01:00 committed by Dirk Hohndel
parent 9d34ab4bc4
commit f92daa16ef
2 changed files with 98 additions and 0 deletions

19
tests/testplannershared.h Normal file
View file

@ -0,0 +1,19 @@
// SPDX-License-Identifier: GPL-2.0
#ifndef TESTPLANNERSHARED_H
#define TESTPLANNERSHARED_H
#include <QObject>
class TestPlannerShared : public QObject {
Q_OBJECT
private slots:
void initTestCase();
// test case grouping correspond to panels diveplanner window
void test_rates();
void test_planning();
void test_gas();
void test_notes();
};
#endif // TESTPLANNERSHARED_H