16b9daab0366f5bf63ddbba0ca620169fc3818a0
[irwi] / ut / ut_remotelist / ut_remotelist.cpp
1 #include "ut_remotelist.h"
2 #include "remotelist.h"
3 #include <QtTest>
4 #include <QStringList>
5
6 void Ut_RemoteList::initTestCase()
7 {
8 }
9
10 void Ut_RemoteList::cleanupTestCase()
11 {
12 }
13
14 void Ut_RemoteList::init()
15 {
16 }
17
18 void Ut_RemoteList::testSetContent()
19 {
20 }
21
22 void Ut_RemoteList::testIsValid()
23 {
24     RemoteList subject("remotes.xml");
25     QCOMPARE(subject.isValid(), true);
26 }
27
28 void Ut_RemoteList::testIsValid_InvalidFile()
29 {
30 //    RemoteList subject("notxmlfile");
31 //    QCOMPARE(subject.isValid(), false);
32 }
33
34 void Ut_RemoteList::testIsValid_FileNotFound()
35 {
36 //    RemoteList subject("thisdoesnotexist");
37 //    QCOMPARE(subject.isValid(), false);
38 }
39  
40 void Ut_RemoteList::testLetters()
41 {
42
43 }
44
45 void Ut_RemoteList::testManufacturers()
46 {
47
48 }
49
50 void Ut_RemoteList::testModels()
51 {
52
53 }
54
55
56
57
58 QTEST_MAIN(Ut_RemoteList)
59
60