File indexing completed on 2024-11-24 04:43:06

0001 /*
0002   This file is part of KAddressBook.
0003 
0004   SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0005 
0006   SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #pragma once
0010 
0011 #include <QObject>
0012 
0013 class SendVcardsJobTest : public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit SendVcardsJobTest(QObject *parent = nullptr);
0018     ~SendVcardsJobTest() override;
0019 private Q_SLOTS:
0020     void shouldNotStartWhenListAddressIsEmpty();
0021     void shouldHasDefaultValue();
0022     void shouldChangeExportVersion();
0023 };