Warning, file /frameworks/kcontacts/autotests/emailtest.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 the KContacts framework. 0003 SPDX-FileCopyrightText: 2015-2019 Laurent Montel <montel@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef EMAILTEST_H 0009 #define EMAILTEST_H 0010 0011 #include <QObject> 0012 0013 class EmailTest : public QObject 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit EmailTest(QObject *parent = nullptr); 0018 ~EmailTest() override; 0019 0020 private Q_SLOTS: 0021 void shouldHaveDefaultValue(); 0022 void shouldAssignValue(); 0023 void shouldAssignExternal(); 0024 void shouldSerialized(); 0025 void shouldEqualEmail(); 0026 void shouldParseEmailVCard(); 0027 void shouldParseEmailVCardWithoutEmail(); 0028 void shouldParseEmailVCardWithMultiEmails(); 0029 void shouldExportVcard(); 0030 }; 0031 0032 #endif // EMAILTEST_H