calamares/src/modules/contextualprocess/Tests.h

32 lines
661 B
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#ifndef TESTS_H
#define TESTS_H
#include <QObject>
class ContextualProcessTests : public QObject
{
Q_OBJECT
public:
ContextualProcessTests();
~ContextualProcessTests() override;
private Q_SLOTS:
void initTestCase();
// Check the sample config file is processed correctly
void testProcessListSampleConfig();
// Variable binding lookup
void testFetch();
};
#endif