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

0001 #ifndef KGPGCHANGETRUST_TEST_H
0002 #define KGPGCHANGETRUST_TEST_H
0003 
0004 #include <gpgme.h>
0005 #include <QMetaType>
0006 #include <QObject>
0007 #include <QTemporaryDir>
0008 
0009 class KGpgChangeTrustTest : public QObject {
0010     Q_OBJECT
0011 private Q_SLOTS:
0012     void init();
0013     void testChangeTrust();
0014     void testChangeTrust_data();
0015 
0016 private:
0017     QTemporaryDir m_tempdir;
0018 };
0019 
0020 Q_DECLARE_METATYPE(gpgme_validity_t)
0021 
0022 #endif