ACF $AcfVersion:0$
CBitmapBaseTest.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// ACF includes
10#include <iimg/CBitmap.h> // Using CBitmap as concrete implementation of CBitmapBase
12
13class CBitmapBaseTest: public QObject
14{
15 Q_OBJECT
16private slots:
17 void GetCenterTest();
18 void MoveCenterToTest();
19 void GetBoundingBoxTest();
20 void IsEmptyTest();
21 void GetLineBytesCountTest();
22 void GetComponentBitsCountTest();
23 void GetPixelBitsCountTest();
24 void GetComponentsCountTest();
25 void CreateImageFromRegionTest();
26 void GetColorAtTest();
27 void SetColorAtTest();
28 void GetColorModelTest();
29};