File indexing completed on 2024-04-28 15:18:53

0001 /*
0002   This file is part of the kcalcore library.
0003 
0004   SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
0005   SPDX-FileContributor: Sergio Martins <sergio.martins@kdab.com>
0006 
0007   SPDX-License-Identifier: LGPL-2.0-or-later
0008 */
0009 
0010 #ifndef TESTICALFORMAT_H
0011 #define TESTICALFORMAT_H
0012 
0013 #include <QObject>
0014 
0015 class ICalFormatTest : public QObject
0016 {
0017     Q_OBJECT
0018 private Q_SLOTS:
0019     void testDeserializeSerialize();
0020     void testCharsets();
0021     void testVolatileProperties();
0022     void testCuType();
0023     void testAlarm();
0024     void testDateTimeSerialization_data();
0025     void testDateTimeSerialization();
0026     void testRDate();
0027     void testDateTime_data();
0028     void testDateTime();
0029     void testNotebook();
0030     void testUidGeneration();
0031     void testUidGenerationStability();
0032     void testUidGenerationUniqueness();
0033     void testIcalFormat();
0034     void testNonTextCustomProperties();
0035     void testAllDaySchedulingMessage();
0036 };
0037 
0038 #endif