Mercurial > trustbridge
comparison ui/tests/binverifytest.h @ 636:2fd4f9980a2a
Add test for authenticode verificate (binverify)
Still incomplete
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 23 Jun 2014 18:00:45 +0200 |
parents | |
children | be30d50bc4f0 |
comparison
equal
deleted
inserted
replaced
635:ed1887be5170 | 636:2fd4f9980a2a |
---|---|
1 /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik | |
2 * Software engineering by Intevation GmbH | |
3 * | |
4 * This file is Free Software under the GNU GPL (v>=2) | |
5 * and comes with ABSOLUTELY NO WARRANTY! | |
6 * See LICENSE.txt for details. | |
7 */ | |
8 #ifndef COMMONTEST_H | |
9 #define COMMONTEST_H | |
10 | |
11 #include <QObject> | |
12 | |
13 class BinVerifyTest: public QObject | |
14 { | |
15 Q_OBJECT | |
16 | |
17 private Q_SLOTS: | |
18 void testNoSignature(); | |
19 void testMiscErrors(); | |
20 void testValidBinary(); | |
21 }; | |
22 #endif | |
23 |