File indexing completed on 2024-05-26 04:41:10

0001 /*
0002     SPDX-FileCopyrightText: 2014 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_TEST_DUCHAINSHUTDOWN_H
0008 #define KDEVPLATFORM_TEST_DUCHAINSHUTDOWN_H
0009 
0010 #include <QObject>
0011 
0012 namespace KDevelop {
0013 class TestCore;
0014 }
0015 
0016 class TestDUChainShutdown
0017     : public QObject
0018 {
0019     Q_OBJECT
0020 
0021 private Q_SLOTS:
0022     void initTestCase();
0023     void cleanupTestCase();
0024 
0025     void runTest();
0026 
0027 private:
0028     KDevelop::TestCore* m_core;
0029 };
0030 
0031 #endif // TST_DUCHAINSHUTDOWN_H