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

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 EXTERNALWRITERTEST_H
0009 #define EXTERNALWRITERTEST_H
0010 
0011 #include <QObject>
0012 
0013 class ExternalWriterTest : public QObject
0014 {
0015     Q_OBJECT
0016 private:
0017     QString testFilePath(const QString& fileName) const;
0018 
0019 private Q_SLOTS:
0020     void test();
0021     void testProperties();
0022 };
0023 
0024 #endif // EXTERNALWRITERTEST_H