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

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