You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
376 B
C
21 lines
376 B
C
3 years ago
|
#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
|