File indexing completed on 2024-04-14 03:50:36

0001 /*
0002   This file is part of the kcalcore library.
0003 
0004   SPDX-FileCopyrightText: 2006-2008 Allen Winter <winter@kde.org>
0005 
0006   SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef TESTEVENT_H
0010 #define TESTEVENT_H
0011 
0012 #include <QObject>
0013 
0014 class EventTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void initTestCase();
0019 
0020     void testSetRoles_data();
0021     void testSetRoles();
0022     void testValidity();
0023     void testCompare();
0024     void testDtEndEqual();
0025     void testCompareAlarms();
0026     void testClone();
0027     void testCopyConstructor();
0028     void testCopyIncidence();
0029     void testAssign();
0030     void testSerializer_data();
0031     void testSerializer();
0032     void testDurationDtEnd();
0033     void testDtStartChange();
0034     void testDtEndChange();
0035     void testIsMultiDay_data();
0036     void testIsMultiDay();
0037 };
0038 
0039 #endif