1 /*
2     This file is part of the KDE frameworks
3     SPDX-FileCopyrightText: 2016 Ragnar Thomsen <rthomsen6@gmail.com>
4 
5     SPDX-License-Identifier: LGPL-2.1-or-later
6 */
7 
8 #ifndef KCOLLAPSIBLEGROUPBOXTEST_H
9 #define KCOLLAPSIBLEGROUPBOXTEST_H
10 
11 #include <QObject>
12 
13 class KCollapsibleGroupBoxTest : public QObject
14 {
15     Q_OBJECT
16 
17 private Q_SLOTS:
18     void testDestructorCrash();
19     void testOverrideFocus();
20     void childShouldGetFocus();
21 };
22 
23 #endif /* KCOLLAPSIBLEGROUPBOXTEST_H */
24