File indexing completed on 2024-04-14 05:43:27

0001 #ifndef KGPGENCRYPT_TEST_H
0002 #define KGPGENCRYPT_TEST_H
0003 
0004 #include <QObject>
0005 #include <QTemporaryDir>
0006 
0007 class KGpgEncryptTest : public QObject {
0008     Q_OBJECT
0009 private Q_SLOTS:
0010     void init();
0011     void testAsciiArmoredEncryption();
0012     void testHideKeyIdEncryption();
0013     void testSymmetricEncryption();
0014 
0015 private:
0016     QTemporaryDir m_tempdir;
0017 };
0018 
0019 #endif