ACF $AcfVersion:0$
TSerializableContainerTest.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 <QtCore/QString>
8#include <QtTest/QtTest>
9
10// ACF includes
12
13
17class TSerializableContainerTest : public QObject
18{
19 Q_OBJECT
20
21private Q_SLOTS:
22 void initTestCase();
23
24 // Serialization tests
25 void testSerializeInt();
26 void testSerializeString();
27 void testSerializeEmpty();
28
29 void cleanupTestCase();
30};
31
32
Unit tests for TSerializableContainer template class.