summaryrefslogtreecommitdiffstats
path: root/test/test.h
blob: c9d4dd8ac39ffabfc0f3d057eac9f495f8cb972f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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