File indexing completed on 2024-05-12 04:39:18

0001 /*
0002     SPDX-FileCopyrightText: 2013 Milian Wolff <mail@milianw.de>
0003     SPDX-FileCopyrightText: 2013 Olivier de Gaalon <olivier.jg@gmail.com>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef TEST_FILES_H
0009 #define TEST_FILES_H
0010 
0011 #include <QObject>
0012 
0013 class TestEnvironmentProvider;
0014 
0015 class TestFiles : public QObject
0016 {
0017     Q_OBJECT
0018 private Q_SLOTS:
0019     void initTestCase();
0020     void cleanupTestCase();
0021     void cleanup();
0022     void testFiles_data();
0023     void testFiles();
0024 private:
0025     TestEnvironmentProvider *m_provider;
0026 };
0027 
0028 #endif // TEST_FILES_H