blob: 73ce8aa9c358a1d1db6bab0a18ccc91f0643f112 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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_planning();
void test_gas();
void test_notes();
};
#endif // TESTPLANNERSHARED_H
|