ssu
Loading...
Searching...
No Matches
ssutest.h
1
7
8#ifndef _SSUTEST_H
9#define _SSUTEST_H
10
11#include <QObject>
12#include <QStringList>
13
14#include "libssu/ssu.h"
15
16class SsuTest: public QObject
17{
18 Q_OBJECT
19
20private slots:
21 void initTestCase();
22 void testCredentialsScope();
23 void testCredentialsScopeStoreAuthRepos();
24 void testCredentialsScopeSecureDomainAuth();
25private:
26 Ssu ssu;
27};
28
29#endif
Definition ssu.h:37