File: kgpgimport.h

package info (click to toggle)
kgpg 4%3A18.08.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,168 kB
  • sloc: cpp: 18,911; xml: 159; makefile: 8; sh: 4
file content (24 lines) | stat: -rw-r--r-- 424 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef KGPGIMPORT_TEST_H
#define KGPGIMPORT_TEST_H

#include <QObject>
#include <QTemporaryDir>

class KGpgImportTest: public QObject
{
	Q_OBJECT
private slots:
	void init();
	void testImportTextKey();
	void testImportIdsAll();
	void testImportIdsUnchanged();
	void testImportKeyFromFile();
	void testImportSameKeyTwice();
	void testLogMessage();
	void testImportSecretKey();

private:
	QTemporaryDir m_tempdir;
};

#endif