Mercurial > trustbridge
comparison ui/tests/downloadertest.h @ 43:5910bf9016cd
Add Downloadertest
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Fri, 14 Mar 2014 15:25:47 +0000 |
parents | |
children | c6125d73faf4 |
comparison
equal
deleted
inserted
replaced
42:6e7ef7e95031 | 43:5910bf9016cd |
---|---|
1 #ifndef DOWNLOADERTEST_H | |
2 #define DOWNLOADERTEST_H | |
3 | |
4 #include <QObject> | |
5 #include <QtTest/QtTest> | |
6 #include <QProcess> | |
7 #include <QTemporaryDir> | |
8 #include <QSignalSpy> | |
9 #include "downloader.h" | |
10 | |
11 class DownloaderTest: public QObject | |
12 { | |
13 Q_OBJECT | |
14 | |
15 void startServer(QString additionalOptions = QString()); | |
16 | |
17 private: | |
18 QProcess serverProc; | |
19 QTemporaryDir serverConfigDir; | |
20 | |
21 public Q_SLOTS: | |
22 void downloaderError(const QString &message, Downloader::ErrorCode error); | |
23 | |
24 private Q_SLOTS: | |
25 void initTestCase(); | |
26 void cleanupTestCase(); | |
27 void testNewList(); | |
28 }; | |
29 #endif | |
30 |