Warning, file /utilities/kgpg/tests/kgpginterface.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #ifndef KGPG_INTERFACE_TEST_H
0002 #define KGPG_INTERFACE_TEST_H
0003 
0004 #include <QObject>
0005 #include <QTemporaryDir>
0006 
0007 class KGpgInterfaceTest: public QObject
0008 {
0009     Q_OBJECT
0010 private Q_SLOTS:
0011     void init();
0012     void testReadPublicKeys();
0013     void testReadSecretKeys();
0014     void testReadEmptyKeyring();
0015 
0016 private:
0017     QTemporaryDir m_tempdir;
0018 };
0019 
0020 #endif