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

0001 /*
0002   This file is part of the kcalcore library.
0003 
0004   SPDX-FileCopyrightText: 2006-2007 Allen Winter <winter@kde.org>
0005 
0006   SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef TESTMEMORYCALENDAR_H
0010 #define TESTMEMORYCALENDAR_H
0011 
0012 #include <QObject>
0013 
0014 class MemoryCalendarTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void testClose();
0019     void testValidity();
0020     void testInvalidTimeZone();
0021     void testEvents();
0022     void testIncidences();
0023     void testRelationsCrash();
0024     void testRecurrenceExceptions();
0025     void testChangeRecurId();
0026     void testRawEvents();
0027     void testRawEventsForDate();
0028     void testVisibility();
0029     void testNotebookChange();
0030     void testDeleteIncidence();
0031     void testUpdateIncidence();
0032 };
0033 
0034 #endif