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

0001 #ifndef KGPGIMPORT_TEST_H
0002 #define KGPGIMPORT_TEST_H
0003 
0004 #include <QObject>
0005 #include <QTemporaryDir>
0006 
0007 class KGpgImportTest: public QObject
0008 {
0009     Q_OBJECT
0010 private Q_SLOTS:
0011     void init();
0012     void testImportTextKey();
0013     void testImportIdsAll();
0014     void testImportIdsUnchanged();
0015     void testImportKeyFromFile();
0016     void testImportSameKeyTwice();
0017     void testLogMessage();
0018     void testImportSecretKey();
0019 
0020 private:
0021     QTemporaryDir m_tempdir;
0022 };
0023 
0024 #endif