File indexing completed on 2024-04-21 14:47:19

0001 /*
0002     SPDX-FileCopyrightText: 2017 Csaba Kertesz <csaba.kertesz@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "config-kstars.h"
0010 
0011 #include <QMutex>
0012 #include <QObject>
0013 
0014 class KStarsLiteUiTests : public QObject
0015 {
0016     Q_OBJECT
0017 
0018   public:
0019     KStarsLiteUiTests();
0020     virtual ~KStarsLiteUiTests() = default;
0021 
0022   private slots:
0023     void initTestCase();
0024     void cleanupTestCase();
0025     void openToolbars();
0026 };