1 /*
2     SPDX-FileCopyrightText: 2014 Laurent Montel <montel@kde.org>
3 
4     SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6 
7 #ifndef KPAGEDIALOGAUTOTEST_H
8 #define KPAGEDIALOGAUTOTEST_H
9 
10 #include <QObject>
11 
12 class KPageDialogAutoTest : public QObject
13 {
14     Q_OBJECT
15 public:
16     KPageDialogAutoTest();
17 
18 private Q_SLOTS:
19     void shouldHaveDefaultValuesOnCreation();
20     void shouldAddAnActionButton();
21     void shouldAddTwoActionButton();
22     void shouldNotAddTwoSameActionButton();
23 };
24 
25 #endif // KPAGEDIALOGAUTOTEST_H
26