2014-11-13 01:04:59 +02:00
|
|
|
/* kate: tab-indents off; replace-tabs on; tab-width 4; remove-trailing-space on; encoding utf-8;*/
|
|
|
|
/*
|
|
|
|
This file is part of the KDE libraries
|
|
|
|
This file has been placed in the Public Domain.
|
|
|
|
*/
|
|
|
|
|
2015-07-11 18:20:46 +03:00
|
|
|
#ifndef KTEMPORARYFILETEST_H
|
|
|
|
#define KTEMPORARYFILETEST_H
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
|
|
class KTemporaryFileTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
|
|
void initTestCase();
|
|
|
|
void cleanupTestCase();
|
|
|
|
void testKTemporaryFile();
|
2022-10-23 18:05:15 +03:00
|
|
|
void testFilePath();
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString kdeTempDir;
|
|
|
|
QString componentName;
|
|
|
|
};
|
|
|
|
|
2022-10-23 18:05:15 +03:00
|
|
|
#endif // KTEMPORARYFILETEST_H
|