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

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