File: testoccurrenceiterator.h

package info (click to toggle)
kcalcore 5%3A5.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,684 kB
  • sloc: cpp: 24,252; perl: 136; sh: 11; makefile: 7
file content (25 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * SPDX-FileCopyrightText: 2012 Christian Mollekopf <mollekopf@kolabsys.com>
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */

#ifndef TESTOCCURRENCEITERATOR_H
#define TESTOCCURRENCEITERATOR_H
#include <QObject>

class TestOccurrenceIterator : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void testIterationWithExceptions();
    void testEventsAndTodos();
    void testFilterCompletedTodos();
    void testAllDayEvents();
    void testWithExceptionThisAndFuture();
    void testSubDailyRecurrences();
    void testJournals();
    void testEndDate();
};

#endif // TESTOCCURRENCEITERATOR_H