File indexing completed on 2024-05-19 15:45:49

0001 /*
0002     SPDX-FileCopyrightText: 2010 Niko Sams <niko.sams@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_PROJECTLOADTEST_H
0008 #define KDEVPLATFORM_PLUGIN_PROJECTLOADTEST_H
0009 
0010 #include <QObject>
0011 
0012 namespace KDevelop
0013 {
0014 class TestCore;
0015 }
0016 
0017 class TestProjectLoad : public QObject
0018 {
0019 Q_OBJECT
0020 
0021 private Q_SLOTS:
0022   void initTestCase();
0023   void cleanupTestCase();
0024   void init();
0025 
0026   void addRemoveFiles();
0027   void removeDirRecursive();
0028   void addLotsOfFiles();
0029   void addMultipleJobs();
0030 
0031   void raceJob();
0032 
0033   void addDuringImport();
0034 };
0035 
0036 #endif