File indexing completed on 2024-04-28 09:46:02

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