ACF $AcfVersion:0$
COptionsListTest.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
11#include <iprm/IOptionsList.h>
12
13
14class COptionsListTest: public QObject
15{
16 Q_OBJECT
17
18private Q_SLOTS:
19 void initTestCase();
20
21 void FindOptionIndexById_ValidId_Test();
22 void FindOptionIndexById_InvalidId_Test();
23 void FindOptionIndexById_EmptyId_Test();
24 void FindOptionIndexById_EmptyList_Test();
25 void FindOptionIndexById_MultipleOptions_Test();
26
27 void cleanupTestCase();
28};
29
30