ACF $AcfVersion:0$
CIChangeableTest.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ACF-Commercial
2#pragma once
3
4
5// Qt includes
6#include <QtCore/QObject>
7#include <QtTest/QtTest>
8
9
10class CIChangeableTest: public QObject
11{
12 Q_OBJECT
13
14private slots:
15 void initTestCase();
16
17 void CIlluminantTest();
18 void CTristimulusSpecificationTest();
19 void CSpectrumInfoTest();
20 void CRgbColorModelTest();
21 void CCieLabColorModelTest();
22 void CSpectralColorModelTest();
23 void CSpectralColorSpecificationBaseTest();
24 void CSubstractiveColorModelBaseTest();
25 void CCmyColorModelTest();
26 void CCmykColorModelTest();
27
28 void cleanupTestCase();
29};
30
31