File indexing completed on 2024-03-24 15:18:33

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 TEST_CATALOG_DOWNLOAD_H
0008 #define TEST_CATALOG_DOWNLOAD_H
0009 
0010 #include "config-kstars.h"
0011 #include <QObject>
0012 
0013 class TestCatalogDownload: public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit TestCatalogDownload(QObject* parent = nullptr);
0018 
0019 private slots:
0020     void initTestCase();
0021     void cleanupTestCase();
0022 
0023     void init();
0024     void cleanup();
0025 
0026     void testCatalogDownloadWhileUpdating();
0027 };
0028 
0029 #endif // TEST_CATALOG_DOWNLOAD_H