You can not 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
381 B
21 lines
381 B
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
#include <TQtCore/TQObject>
|
|
#include <TQtTest/TQtTest>
|
|
|
|
class TestAuth : public TQObject
|
|
{
|
|
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
|