Website updated.
[irwi] / ut / ut_irctrl / ut_irctrl.h
1 #ifndef UT_IRCTRL_H
2 #define UT_IRCTRL_H
3
4 #include <QObject>
5
6 class IrCtrl;
7
8 class Ut_IrCtrl : public QObject
9 {
10     Q_OBJECT
11
12 private slots:
13     void initTestCase();
14     void cleanupTestCase();
15     void init();    // Before each test case
16
17     void testSendCmd0();
18     void testSendCmd1();
19     void testSendCmd2();
20     void testSendCmd3();
21     void testSendCmd4();
22     void testSendCmd5();
23 };
24
25 #endif // UT_IRCTRL_H
26