1 /*
2     SPDX-FileCopyrightText: 2012 Dario Freddi <drf@kde.org>
3 
4     SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6 
7 #ifndef TEST_HELPER_H
8 #define TEST_HELPER_H
9 
10 #include <QObject>
11 
12 #include <kauth.h>
13 
14 using namespace KAuth;
15 
16 class TestHelper : public QObject
17 {
18     Q_OBJECT
19 
20 public Q_SLOTS:
21     ActionReply echoaction(QVariantMap args);
22     ActionReply standardaction(QVariantMap args);
23     ActionReply longaction(QVariantMap args);
24     ActionReply failingaction(QVariantMap args);
25 };
26 
27 #endif
28