File indexing completed on 2024-04-28 07:41:06

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