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