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

0001 /*
0002     SPDX-FileCopyrightText: 2017 Kevin Funk <kfunk@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef TEST_REFACTORING_H
0008 #define TEST_REFACTORING_H
0009 
0010 #include <QObject>
0011 
0012 namespace KDevelop {
0013 class TestProjectController;
0014 }
0015 
0016 class TestRefactoring : public QObject
0017 {
0018     Q_OBJECT
0019 public:
0020     ~TestRefactoring() override;
0021 
0022 private Q_SLOTS:
0023     void initTestCase();
0024     void cleanupTestCase();
0025 
0026     void testClassRename();
0027 
0028 private:
0029     KDevelop::TestProjectController* m_projectController;
0030 };
0031 
0032 #endif // TEST_REFACTORING_H