Files
RedBear-OS/local/recipes/kde/kf6-kio/source/autotests/deletejobtest.h
T
2026-04-14 10:51:06 +01:00

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