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

0001 /*
0002     SPDX-FileCopyrightText: 2010 Andreas Pakulat <apaku@gmx.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-or-later
0005 */
0006 
0007 #ifndef TEST_DEFINESANDINCLUDES_H
0008 #define TEST_DEFINESANDINCLUDES_H
0009 
0010 #include <QObject>
0011 
0012 namespace KDevelop
0013 {
0014 class TestCore;
0015 class IProject;
0016 }
0017 
0018 class TestDefinesAndIncludes : public QObject
0019 {
0020     Q_OBJECT
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void cleanupTestCase();
0024     void cleanup();
0025     void loadSimpleProject();
0026     void loadMultiPathProject();
0027     void testNoProjectIncludeDirectories();
0028     void testEmptyProject();
0029 private:
0030     KDevelop::IProject* m_currentProject = nullptr;
0031 };
0032 
0033 #endif