blob: fb483149bea6ace47e73bf5f4a248b104413d397 (
plain) (
tree)
|
|
// 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
|