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

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_CUSTOMBUILDSYSTEMPLUGIN_H
0008 #define TEST_CUSTOMBUILDSYSTEMPLUGIN_H
0009 
0010 #include <QObject>
0011 
0012 namespace KDevelop
0013 {
0014 class TestCore;
0015 class IProject;
0016 }
0017 
0018 class TestCustomBuildSystemPlugin : public QObject
0019 {
0020 Q_OBJECT
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void cleanupTestCase();
0024     void cleanup();
0025     void loadSimpleProject();
0026     void buildDirProject();
0027     void loadMultiPathProject();
0028 private:
0029     KDevelop::IProject* m_currentProject = nullptr;
0030 };
0031 
0032 #endif