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

0001 /*
0002   This file is part of the kcalcore library.
0003 
0004   SPDX-FileCopyrightText: 2011 Sérgio Martins <iamsergio@gmail.com>
0005 
0006   SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef TESTRECURTODO_H
0010 #define TESTRECURTODO_H
0011 
0012 #include <QObject>
0013 
0014 class RecurTodoTest : public QObject
0015 {
0016     Q_OBJECT
0017 private:
0018     void setTimeZone(const char *zonename);
0019 private Q_SLOTS:
0020     void testAllDay();
0021     void testNonAllDay();
0022     void testIsAllDay();
0023     void testDtStart();
0024     void testRecurrenceBasedOnDtStart();
0025     void testRecurrenceBasedOnDue();
0026     void testRecurrenceExdates();
0027     void testRecurrenceStart();
0028     void testHasDueDate();
0029 
0030     void testRecurTodo_data();
0031     void testRecurTodo();
0032 };
0033 
0034 #endif