subsurface/tests/testplannershared.h
jan Iversen f92daa16ef tests: add framework for plannerShared test
Add TestPlannerShared test (cpp + h)

Signed-off-by: Jan Iversen <jan@casacondor.com>
2019-12-27 05:40:26 +09:00

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