ACF $AcfVersion:0$
CClassInfoTest.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 <istd/CClassInfo.h>
12
13class CClassInfoTest: public QObject
14{
15 Q_OBJECT
16private slots:
17 void initTestCase();
18
19 void DefaultConstructorTest();
20 void TypeInfoConstructorTest();
21 void NameConstructorTest();
22 void GetNameTest();
23 void IsValidTest();
24 void ComparisonOperatorsTest();
25 void IsTypeTest();
26 void GetInfoStaticTest();
27
28 void cleanupTestCase();
29};
30
31