Mercurial > trustbridge
comparison 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 |
comparison
equal
deleted
inserted
replaced
25:92108a2120f1 | 26:cbd57d767dfa |
---|---|
1 #ifndef IMAPSTREAMPARSERTEST_H | |
2 #define IMAPSTREAMPARSERTEST_H | |
3 | |
4 #include <QObject> | |
5 #include <QtTest/QtTest> | |
6 | |
7 class CertificateList; | |
8 | |
9 class CertListTest: public QObject | |
10 { | |
11 Q_OBJECT | |
12 | |
13 CertificateList* testWithFile(const char *filename); | |
14 | |
15 private Q_SLOTS: | |
16 void testInvalidSig(); | |
17 void testValidList(); | |
18 void testInvalidFileNames(); | |
19 void testGarbage(); | |
20 void testTooLarge(); | |
21 void benchmarkValid(); | |
22 }; | |
23 #endif |