/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2019 Adriaan de Groot * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. * */ #ifndef TESTS_H #define TESTS_H #include class InitramfsTests : public QObject { Q_OBJECT public: InitramfsTests(); ~InitramfsTests() override; private Q_SLOTS: void initTestCase(); void cleanup(); // TODO: this doesn't actually test any of the functionality of this job void testCreateTargetFile(); }; #endif