File indexing completed on 2024-04-21 05:50:41

0001 #ifndef KGPGVERIFYTEST_H
0002 #define KGPGVERIFYTEST_H
0003 
0004 #include <QObject>
0005 #include <QTemporaryDir>
0006 
0007 class KGpgVerifyTest: public QObject
0008 {
0009     Q_OBJECT
0010 private Q_SLOTS:
0011     void init();
0012     void testVerifySignedText();
0013     void testVerifySignedFile();
0014     void testVerifyReturnMissingKey();
0015     void testVerifyMissingId();
0016     void testVerifyReturnBadSignature();
0017 
0018 private:
0019     QTemporaryDir m_tempdir;
0020 };
0021 
0022 #endif // KGPGVERIFYTEST_H