File indexing completed on 2025-01-12 12:29:35
0001 /* 0002 SPDX-FileCopyrightText: 2017 Chinmoy Ranjan Pradhan <chinmoyrp65@gmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #ifndef PRIVILEGEJOBTEST_H 0008 #define PRIVILEGEJOBTEST_H 0009 0010 #include <QObject> 0011 0012 class PrivilegeJobTest : public QObject 0013 { 0014 Q_OBJECT 0015 private Q_SLOTS: 0016 void initTestCase(); 0017 void cleanupTestCase(); 0018 0019 void privilegeChmod(); 0020 void privilegeCopy(); 0021 void privilegeDelete(); 0022 void privilegeMkpath(); 0023 void privilegePut(); 0024 void privilegeRename(); 0025 void privileSymlink(); 0026 0027 private: 0028 QString m_testFilePath; 0029 }; 0030 0031 #endif