File indexing completed on 2024-05-19 04:40:42

0001 /*
0002     SPDX-FileCopyrightText: 2018 Anton Anikin <anton@anikin.xyz>
0003     SPDX-FileCopyrightText: 2020 Friedrich W. H. Kossebau <kossebau@kde.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef COMPILEANALYZER_COMPILEANALYZEJOB_TEST_H
0009 #define COMPILEANALYZER_COMPILEANALYZEJOB_TEST_H
0010 
0011 // Qt
0012 #include <QObject>
0013 
0014 class TestCompileAnalyzeJob : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 private Q_SLOTS:
0019     void initTestCase();
0020     void cleanupTestCase();
0021 
0022     void testJob();
0023 };
0024 
0025 #endif