File indexing completed on 2024-04-21 03:52:40

0001 /*
0002   This file is part of the kcalcore library.
0003 
0004   SPDX-FileCopyrightText: 2015 Sandro Knauß <knauss@kolabsys.com>
0005 
0006   SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef TESTINCIDENCE_H
0010 #define TESTINCIDENCE_H
0011 
0012 #include <QObject>
0013 
0014 class IncidenceTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void initTestCase();
0019 
0020     void testDtStartChange();
0021     void testDtStartEqual();
0022     void testSummaryChange();
0023     void testLocationChange();
0024     void testGeo();
0025 
0026     void testRecurrenceTypeChange();
0027     void testRecurrenceEndTimeChange();
0028     void testRecurrenceEndTimeDurationChange();
0029     void testRecurrenceDurationChange();
0030     void testRecurrenceExDatesChange();
0031     void testRecurrenceMonthlyPos();
0032     void testRecurrenceMonthlyDate();
0033     void testRecurrenceYearlyDay();
0034     void testRecurrenceYearlyMonth();
0035 };
0036 
0037 #endif