Mercurial > trustbridge
diff ui/tests/certlistparsertest.h @ 26:cbd57d767dfa
Move layout around. Restructure CMakeLists
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Tue, 11 Mar 2014 19:00:35 +0100 |
parents | tests/certlistparsertest.h@992c0ec57660 |
children | 6e7ef7e95031 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/tests/certlistparsertest.h Tue Mar 11 19:00:35 2014 +0100 @@ -0,0 +1,23 @@ +#ifndef IMAPSTREAMPARSERTEST_H +#define IMAPSTREAMPARSERTEST_H + +#include <QObject> +#include <QtTest/QtTest> + +class CertificateList; + +class CertListTest: public QObject +{ + Q_OBJECT + + CertificateList* testWithFile(const char *filename); + +private Q_SLOTS: + void testInvalidSig(); + void testValidList(); + void testInvalidFileNames(); + void testGarbage(); + void testTooLarge(); + void benchmarkValid(); +}; +#endif