ImagingTools Core SDK
CMesh3dTest.h
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ImtCore-Commercial
2#pragma once
3
4
5// Qt includes
6#include <QtCore/QObject>
7#include <QtTest/QtTest>
8
9// ACF includes
10#include <itest/CStandardTestExecutor.h>
11
12// ImtCore includes
13#include <imt3d/CMesh3d.h>
14
15
19class CMesh3dTest: public QObject
20{
21 Q_OBJECT
22
23private slots:
24 void initTestCase();
25
26 void testCreateMesh();
27 void testCreateMeshWithData();
28 void testInsertData();
29 void testGetIndices();
30 void testGetPointsCount();
31 void testSerialization();
32 void testCopyFrom();
33 void testIsEqual();
34 void testCloneMe();
35 void testResetData();
36
37 void cleanupTestCase();
38};
39
40