File indexing completed on 2024-04-21 14:53:33

0001 /*
0002  * SPDX-FileCopyrightText: 2012 Christian Mollekopf <mollekopf@kolabsys.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #ifndef TESTOCCURRENCEITERATOR_H
0008 #define TESTOCCURRENCEITERATOR_H
0009 #include <QObject>
0010 
0011 class TestOccurrenceIterator : public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testIterationWithExceptions();
0016     void testEventsAndTodos();
0017     void testFilterCompletedTodos();
0018     void testAllDayEvents();
0019     void testWithExceptionThisAndFuture();
0020     void testSubDailyRecurrences();
0021     void testJournals();
0022     void testEndDate();
0023 };
0024 
0025 #endif // TESTOCCURRENCEITERATOR_H