File indexing completed on 2024-03-24 04:03:45

0001 /*
0002     This file is part of LibSyndication.
0003     SPDX-FileCopyrightText: Laurent Montel <montel@kde.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
0006 */
0007 
0008 #ifndef SYNDICATIONTEST_H
0009 #define SYNDICATIONTEST_H
0010 
0011 #include <QObject>
0012 
0013 class SyndicationTest : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit SyndicationTest(QObject *parent = nullptr);
0018     ~SyndicationTest() override = default;
0019 private Q_SLOTS:
0020     void testSyncationFile_data();
0021     void testSyncationFile();
0022 };
0023 
0024 #endif // SYNDICATIONTEST_H