File indexing completed on 2025-03-09 04:54:37

0001 /*
0002    SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 #include "remote-content/remotecontentmanager.h"
0012 
0013 class RemoteContentManagerTest : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit RemoteContentManagerTest(QObject *parent = nullptr);
0018     ~RemoteContentManagerTest() override;
0019 
0020 private Q_SLOTS:
0021     void shouldHaveDefaultValues();
0022     void shouldIsBlocked_data();
0023     void shouldIsBlocked();
0024 
0025 private:
0026     MessageViewer::RemoteContentManager mRemoveContentManager;
0027 };