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

0001 /*
0002     This file is part of the KContacts framework.
0003     SPDX-FileCopyrightText: 2007 KDE-PIM team <kde-pim@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef GEOTEST_H
0009 #define GEOTEST_H
0010 
0011 #include <QObject>
0012 
0013 class GeoTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void constructor();
0019     void isValid();
0020     void setData();
0021     void equals();
0022     void differs();
0023     void serialization();
0024     void shouldParseGeoVCard3();
0025     void shouldParseGeoVCard4();
0026     void shouldGenerateVCard3();
0027     void shouldGenerateVCard4();
0028     void shouldGenerateWithoutGeo();
0029 };
0030 
0031 #endif