cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
544 B
C++
26 lines
544 B
C++
/*
|
|
SPDX-FileCopyrightText: 2015 Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-only
|
|
*/
|
|
|
|
#ifndef DELETEJOBTEST_H
|
|
#define DELETEJOBTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class DeleteJobTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
void deleteFileTestCase_data() const;
|
|
void deleteFileTestCase();
|
|
void deleteDirectoryTestCase_data() const;
|
|
void deleteDirectoryTestCase();
|
|
|
|
private:
|
|
void createEmptyTestFiles(const QStringList &fileNames, const QString &path) const;
|
|
};
|
|
|
|
#endif
|