File indexing completed on 2024-04-28 15:22:14

0001 /*
0002     SPDX-FileCopyrightText: 2014 Vishesh Handa <me@vhanda.in>
0003     SPDX-FileCopyrightText: 2016 Varun Joshi <varunj.1011@gmail.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #ifndef EXTERNALEXTRACTORTEST_H
0009 #define EXTERNALEXTRACTORTEST_H
0010 
0011 #include <QObject>
0012 
0013 class ExternalExtractorTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private:
0018     QString testFilePath(const QString& fileName) const;
0019 
0020 private Q_SLOTS:
0021     void test();
0022 };
0023 
0024 #endif // EXTERNALEXTRACTORTEST_H