┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tests/testdir.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/testdir.h')
-rw-r--r--src/tests/testdir.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/tests/testdir.h b/src/tests/testdir.h
index bff462690..bcaa034b5 100644
--- a/src/tests/testdir.h
+++ b/src/tests/testdir.h
@@ -29,29 +29,27 @@
* TestDir provides a temporary directory. In addition to KTempDir, it has
* methods that create files and subdirectories inside the directory.
*/
-
class TestDir : public KTempDir
{
public:
+ TestDir();
+ virtual ~TestDir();
- TestDir() {}
- ~TestDir() {}
-
- KUrl url() const { return KUrl(name()); }
+ KUrl url() const;
/**
* The following functions create either a file, a list of files, or a directory.
* The paths may be absolute or relative to the test directory. Any missing parent
* directories will be created automatically.
*/
-
- void createFile(const QString& path, const QByteArray& data = QByteArray("test"), const QDateTime& time = QDateTime());
+ void createFile(const QString& path,
+ const QByteArray& data = QByteArray("test"),
+ const QDateTime& time = QDateTime());
void createFiles(const QStringList& files);
void createDir(const QString& path, const QDateTime& time = QDateTime());
private:
-
void makePathAbsoluteAndCreateParents(QString& path);
};