aboutsummaryrefslogtreecommitdiff
path: root/tests/tests.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-07-20 10:59:53 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-07-20 10:59:53 +0200
commit15cab790071aabfc62977d590b89f54a5fa6e92d (patch)
tree4b75e1269ab983d06130340325a4ee97baf901e7 /tests/tests.cpp
parenta609100c2a0eb19ef4b9c7a571366281ca722ac8 (diff)
downloadqxmpp-15cab790071aabfc62977d590b89f54a5fa6e92d.tar.gz
first stab at factoring out server-side SASL
Diffstat (limited to 'tests/tests.cpp')
-rw-r--r--tests/tests.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp
index 49a60613..acb6b145 100644
--- a/tests/tests.cpp
+++ b/tests/tests.cpp
@@ -1378,8 +1378,11 @@ int main(int argc, char *argv[])
tst_QXmppRtpPacket testRtp;
errors += QTest::qExec(&testRtp);
- tst_QXmppSaslClient testSasl;
- errors += QTest::qExec(&testSasl);
+ tst_QXmppSaslClient testSaslClient;
+ errors += QTest::qExec(&testSaslClient);
+
+ tst_QXmppSaslServer testSaslServer;
+ errors += QTest::qExec(&testSaslServer);
TestServer testServer;
errors += QTest::qExec(&testServer);