qtmeetings sources to Maemo garage
[qtmeetings] / tests / IO / Communication / TestCommunication.h
1 #include <QtTest/QtTest>
2 #include "Communication.h"
3 #include "ConnectionSettings.h"
4
5 class TestCommunication: public QObject
6 {
7         Q_OBJECT
8
9 private slots:
10         void initTestCase();
11         void init();
12         void cleanup();
13         void cleanupTestCase();
14         void testPublicSignals();
15     void testRequestAndResponse();
16         void requestFinished( int aRequestId, QHttp::Error aError );
17
18 private:
19         Communication* iComm;
20         int iRequestId;
21 };