File indexing completed on 2024-04-21 04:43:24

0001 #ifndef TEST_H
0002 #define TEST_H
0003 
0004 #include <QObject>
0005 #include <QTest>
0006 
0007 class TestAuth : public QObject
0008 {
0009     Q_OBJECT
0010 private Q_SLOTS:
0011     void test_Auth_checkAuthorization();
0012     void test_Auth_enumerateActions();
0013     void test_Identity();
0014     void test_Authority();
0015     void test_Subject();
0016     void test_Session();
0017     void test_Details();
0018 };
0019 
0020 #endif // TEST_H