File indexing completed on 2024-03-24 15:33:20

0001 /*
0002     SPDX-FileCopyrightText: 2015 Martin Blumenstingl <martin.blumenstingl@googlemail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef DELETEJOBTEST_H
0008 #define DELETEJOBTEST_H
0009 
0010 #include <QObject>
0011 
0012 class DeleteJobTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void deleteFileTestCase_data() const;
0017     void deleteFileTestCase();
0018     void deleteDirectoryTestCase_data() const;
0019     void deleteDirectoryTestCase();
0020 
0021 private:
0022     void createEmptyTestFiles(const QStringList &fileNames, const QString &path) const;
0023 };
0024 
0025 #endif