mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
f92daa16ef
Add TestPlannerShared test (cpp + h) Signed-off-by: Jan Iversen <jan@casacondor.com>
19 lines
382 B
C++
19 lines
382 B
C++
// 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
|