Mercurial > trustbridge
view ui/tests/cinstprocesstest.h @ 177:c92297bcda8f
dirent d_type is not supported on Windows, so use new port_isdir().
FWIW, according to the man page d_type isn't guarantied to work for
all file systems on linux neither.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 16:48:18 +0100 |
parents | 0df62decff90 |
children | d95fd88f6616 |
line wrap: on
line source
#ifndef CINSTPROCESSTEST_H #define CINSTPROCESSTEST_H /* @file Tests for the cinst process * @brief Tests for the cinst process as well as the UI side */ #include <QObject> #include <QProcess> #include <QTest> #include "certificatelist.h" class CinstProcessTest: public QObject { Q_OBJECT private: QProcess* startCinstProcess(); CertificateList validList; CertificateList otherList; CertificateList invalidList; private Q_SLOTS: void initTestCase(); void testValidInput(); void testInvalidInstruction(); void testNoInput(); void testNoList(); void testGarbageInput(); void testNoInstructions(); void testUninstall(); }; #endif