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

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