Warning, file /frameworks/syndication/autotests/syndicationtest.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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