ACF $AcfVersion:0$
TVectorTest.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/TVector.h>
12
13class TVectorTest: public QObject
14{
15 Q_OBJECT
16private slots:
17 void initTestCase();
18
19 void DefaultConstructorTest();
20 void CopyConstructorTest();
21 void InitializerListConstructorTest();
22 void GetSetElementTest();
23 void SetAllElementsTest();
24 void ClearResetTest();
25 void TranslateTest();
26 void ScaledCumulateTest();
27 void IsNullTest();
28 void DotProductTest();
29 void LengthTest();
30 void DistanceTest();
31 void ElementsSumTest();
32 void NormalizeTest();
33 void GetNormalizedTest();
34 void GetMinimalMaximalTest();
35
36 void cleanupTestCase();
37};
38
39