ACF $AcfVersion:0$
CVarMatrixTest.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 <imath/CVarMatrix.h>
12
13class CVarMatrixTest: public QObject
14{
15 Q_OBJECT
16private slots:
17 void initTestCase();
18
19 void DefaultConstructorTest();
20 void SizeConstructorTest();
21 void CopyConstructorTest();
22 void ClearTest();
23 void InitToIdentityTest();
24 void GetSetElementTest();
25 void GetMinMaxElementTest();
26 void AdditionTest();
27 void SubtractionTest();
28 void NegationTest();
29 void MultiplicationTest();
30 void ScalarMultiplicationTest();
31 void TransposeTest();
32 void GetTraceTest();
33 void FrobeniusNormTest();
34 void ComparisonOperatorsTest();
35
36 void cleanupTestCase();
37};
38
39