File indexing completed on 2024-04-14 03:51:19

0001 /*
0002     This file is part of the KContacts framework.
0003     SPDX-FileCopyrightText: 2007 Tobias Koenig <tokoe@kde.org>
0004     SPDX-FileCopyrightText: 2016-2019 Laurent Montel <montel@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KEY_TEST_H
0010 #define KEY_TEST_H
0011 
0012 #include <QObject>
0013 
0014 class KeyTest : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 private Q_SLOTS:
0019     void storeTest();
0020     void equalsTest();
0021     void differsTest();
0022     void assignmentTest();
0023     void serializeTest();
0024     void shouldExportVCard3();
0025     void shouldExportVCard4();
0026     void shouldParseVcard3();
0027     void shouldParseVcard4();
0028 };
0029 
0030 #endif