diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-20 10:59:53 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-20 10:59:53 +0200 |
| commit | 15cab790071aabfc62977d590b89f54a5fa6e92d (patch) | |
| tree | 4b75e1269ab983d06130340325a4ee97baf901e7 /tests/sasl.h | |
| parent | a609100c2a0eb19ef4b9c7a571366281ca722ac8 (diff) | |
| download | qxmpp-15cab790071aabfc62977d590b89f54a5fa6e92d.tar.gz | |
first stab at factoring out server-side SASL
Diffstat (limited to 'tests/sasl.h')
| -rw-r--r-- | tests/sasl.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/sasl.h b/tests/sasl.h index e6db2b01..b1bb7603 100644 --- a/tests/sasl.h +++ b/tests/sasl.h @@ -29,6 +29,7 @@ class tst_QXmppSaslClient : public QObject private slots: void testAvailableMechanisms(); + void testBadMechanism(); void testAnonymous(); void testDigestMd5(); void testDigestMd5_data(); @@ -36,3 +37,14 @@ private slots: void testPlain(); }; +class tst_QXmppSaslServer : public QObject +{ + Q_OBJECT + +private slots: + void testBadMechanism(); + void testAnonymous(); + void testDigestMd5(); + void testPlain(); +}; + |
