aboutsummaryrefslogtreecommitdiff
path: root/tests/message.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-07-18 16:39:39 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-07-18 16:39:39 +0200
commitf880bbd5f96f505d8c00cdfe9d3ad46160d7c34c (patch)
tree5b94addbeef64b719663c676eaa9d781bfde9d41 /tests/message.h
parent2b2b251d5cfd324df9ec3bfdc110568a43f03140 (diff)
downloadqxmpp-f880bbd5f96f505d8c00cdfe9d3ad46160d7c34c.tar.gz
split QXmppMessage tests
Diffstat (limited to 'tests/message.h')
-rw-r--r--tests/message.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/message.h b/tests/message.h
new file mode 100644
index 00000000..ff23705d
--- /dev/null
+++ b/tests/message.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2008-2012 The QXmpp developers
+ *
+ * Authors:
+ * Jeremy Lainé
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ */
+
+#include <QObject>
+
+class tst_QXmppMessage : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void testMessage();
+ void testMessageFull();
+ void testMessageAttention();
+ void testMessageReceipt();
+ void testMessageDelay();
+ void testMessageLegacyDelay();
+};
+