File indexing completed on 2024-04-21 03:52:40

0001 /*
0002   This file is part of the kcalcore library.
0003 
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 TESTFREEBUSYPERIOD_H
0011 #define TESTFREEBUSYPERIOD_H
0012 
0013 #include <QObject>
0014 
0015 class FreeBusyPeriodTest : public QObject
0016 {
0017     Q_OBJECT
0018 private Q_SLOTS:
0019     void testValidity();
0020     void testAssign();
0021     void testCopyConstructor();
0022     void testDataStreamOut();
0023     void testDataStreamIn();
0024 };
0025 
0026 #endif