File indexing completed on 2024-12-22 05:05:24

0001 /*
0002    SPDX-FileCopyrightText: 2022-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 #include "mail/exportmailfolderattributejob.h"
0012 
0013 class ExportMailFolderAttributeJobImplTest : public ExportMailFolderAttributeJob
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit ExportMailFolderAttributeJobImplTest(QObject *parent = nullptr);
0018     ~ExportMailFolderAttributeJobImplTest() override = default;
0019 
0020 protected:
0021     void fetchAttributes() override final
0022     {
0023     }
0024 };
0025 
0026 class ExportMailFolderAttributeJobTest : public QObject
0027 {
0028     Q_OBJECT
0029 public:
0030     explicit ExportMailFolderAttributeJobTest(QObject *parent = nullptr);
0031     ~ExportMailFolderAttributeJobTest() override = default;
0032 private Q_SLOTS:
0033     void shouldHaveDefaultValues();
0034     void shouldEmitSignal();
0035 };