summaryrefslogtreecommitdiffstats
path: root/test/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.h')
-rw-r--r--test/test.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/test.h b/test/test.h
new file mode 100644
index 000000000..c9d4dd8ac
--- /dev/null
+++ b/test/test.h
@@ -0,0 +1,20 @@
+#ifndef TEST_H
+#define TEST_H
+
+#include <QtCore/QObject>
+#include <QtTest/QtTest>
+
+class TestAuth : public QObject
+{
+ Q_OBJECT
+private Q_SLOTS:
+ void test_Auth_checkAuthorization();
+ void test_Auth_enumerateActions();
+ void test_Identity();
+ void test_Authority();
+ void test_Subject();
+ void test_Session();
+ void test_Details();
+};
+
+#endif // TEST_H