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

0001 /*
0002   This file is part of the kcalcore library.
0003   SPDX-FileCopyrightText: 2006, 2008 Allen Winter <winter@kde.org>
0004   SPDX-FileCopyrightText: 2010 Casey Link <unnamedrambler@gmail.com>
0005   SPDX-FileCopyrightText: 2009-2010 Klaralvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
0006 
0007   SPDX-License-Identifier: LGPL-2.0-or-later
0008 */
0009 
0010 #ifndef TESTATTENDEE_H
0011 #define TESTATTENDEE_H
0012 
0013 #include <QObject>
0014 
0015 class AttendeeTest : public QObject
0016 {
0017     Q_OBJECT
0018 private Q_SLOTS:
0019     void testValidity();
0020     void testType();
0021     void testCompare();
0022     void testCompareType();
0023     void testAssign();
0024     void testCopyConstructor();
0025     void testDataStreamOut();
0026     void testDataStreamIn();
0027     void testUid();
0028 };
0029 
0030 #endif