File indexing completed on 2024-05-12 04:39:30

0001 /*
0002     SPDX-FileCopyrightText: 2012 Miha Čančula <miha@noughmad.eu>
0003     SPDX-FileCopyrightText: 2017 Kevin Funk <kfunk@kde.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef TEST_CTESTFINDSUITES_H
0009 #define TEST_CTESTFINDSUITES_H
0010 
0011 #include <QTest>
0012 
0013 class TestCTestFindSuites : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void cleanup();
0019 
0020     void initTestCase();
0021     void cleanupTestCase();
0022 
0023     void testCTestSuite();
0024     void testQtTestCases();
0025 };
0026 
0027 #endif