1 /* === This file is part of Calamares - <https://calamares.io> ===
2  *
3  *   SPDX-FileCopyrightText: 2019 Adriaan de Groot <groot@kde.org>
4  *   SPDX-License-Identifier: GPL-3.0-or-later
5  *
6  *   Calamares is Free Software: see the License-Identifier above.
7  *
8  */
9 
10 #ifndef TESTS_H
11 #define TESTS_H
12 
13 #include <QObject>
14 
15 class InitramfsTests : public QObject
16 {
17     Q_OBJECT
18 public:
19     InitramfsTests();
20     ~InitramfsTests() override;
21 
22 private Q_SLOTS:
23     void initTestCase();
24     void cleanup();
25 
26     // TODO: this doesn't actually test any of the functionality of this job
27     void testCreateTargetFile();
28 };
29 
30 #endif
31