Unit tests for OnlinePollerThread
[irwi] / ut / ut_onlinepollerthread / ut_onlinepollerthread.h
1 #ifndef _UT_ONLINEPOLLERTHREAD_H_
2 #define _UT_ONLINEPOLLERTHREAD_H_
3
4 #include <QObject>
5
6 class OnlinePollerThread;
7
8 class Ut_OnlinePollerThread: public QObject
9 {
10     Q_OBJECT
11
12 private slots:
13     void initTestCase();
14     void cleanupTestCase();
15     void testRunOnline();
16     void testRunOffline();
17 };
18
19 #endif // _UT_ONLINEPOLLERTHREAD_H_
20
21
22