Mercurial > trustbridge
view ui/tests/downloadertest.h @ 179:8fafd0fc2173
get_profile_dirs(): close filedescriptor again. (found by cppcheck)
author | Bernhard Reiter <bernhard@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 17:28:55 +0100 |
parents | f5fa39347366 |
children | c05e126b0b9e |
line wrap: on
line source
#ifndef DOWNLOADERTEST_H #define DOWNLOADERTEST_H #include <QObject> #include <QtTest> #include <QProcess> #include <QTemporaryDir> #include <QSignalSpy> #include "downloader.h" class DownloaderTest: public QObject { Q_OBJECT void startServer(QString additionalOptions = QString()); private: QProcess serverProc; QTemporaryDir serverConfigDir; public Q_SLOTS: void downloaderError(const QString &message, SSLConnection::ErrorCode error); private Q_SLOTS: void initTestCase(); void cleanupTestCase(); void testNewList(); void testNoConnection(); void testOtherCertificate(); void testNewSoftware(); }; #endif