ACF $AcfVersion:0$
CMatrix3dTest.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 <i3d/CMatrix3d.h>
12
13class CMatrix3dTest: public QObject
14{
15 Q_OBJECT
16private slots:
17 void initTestCase();
18
19 void ConstructorTest();
20 void ResetTest();
21 void GetIdentityTest();
22 void GetMultipliedVectorTest();
23 void GetMultipliedMatrixTest();
24 void GetAxisTest();
25 void GetTransposedTest();
26 void GetDeterminantTest();
27 void ScalarOperatorsTest();
28
29 void cleanupTestCase();
30};
31
32