File indexing completed on 2024-06-09 04:23:13

0001 /* This file is part of the KDE project
0002    SPDX-FileCopyrightText: 2017 Boudewijn Rempt
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef TESTMANAGEDCOLOR_H
0007 #define TESTMANAGEDCOLOR_H
0008 
0009 #include <QObject>
0010 
0011 class TestManagedColor : public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testOperatorIs();
0016     void testSetColorSpace();
0017     void testComponentsRoundTrip();
0018     void testXMLRoundTrip();
0019     void testToQString();
0020 };
0021 
0022 #endif
0023