diff options
Diffstat (limited to 'tests/testplannershared.h')
-rw-r--r-- | tests/testplannershared.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/testplannershared.h b/tests/testplannershared.h new file mode 100644 index 000000000..fb483149b --- /dev/null +++ b/tests/testplannershared.h @@ -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 |