File indexing completed on 2024-04-28 15:11:57

0001 /*  KStars UI tests
0002     SPDX-FileCopyrightText: 2021 Eric Dejouhanet <eric.dejouhanet@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef TESTKSPATHS_H
0008 #define TESTKSPATHS_H
0009 
0010 #include "config-kstars.h"
0011 
0012 #include <QObject>
0013 
0014 class TestKSPaths: public QObject
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit TestKSPaths(QObject * parent = nullptr);
0019 
0020 private slots:
0021     void initTestCase();
0022     void cleanupTestCase();
0023 
0024     void init();
0025     void cleanup();
0026 
0027     void testStandardPaths_data();
0028     void testStandardPaths();
0029 
0030     void testKStarsInstallation_data();
0031     void testKStarsInstallation();
0032 };
0033 
0034 #endif // TESTKSPATHS_H