kdelibs/kdecore/tests/ktemporaryfiletest.h

27 lines
530 B
C
Raw Normal View History

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();
private:
QString kdeTempDir;
QString componentName;
};
#endif