File indexing completed on 2024-12-08 06:39:42
0001 /* 0002 This file is part of the KDE libraries 0003 SPDX-FileCopyrightText: 2021 David Faure <faure@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0006 */ 0007 0008 #ifndef KMAILCLIENTLAUNCHERJOBTEST_H 0009 #define KMAILCLIENTLAUNCHERJOBTEST_H 0010 0011 #include <QObject> 0012 0013 class KEMailClientLauncherJobTest : public QObject 0014 { 0015 Q_OBJECT 0016 0017 private Q_SLOTS: 0018 void initTestCase(); 0019 0020 void testEmpty(); 0021 void testTo(); 0022 void testManyFields(); 0023 void testAttachments(); 0024 }; 0025 0026 #endif