/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2018 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 FSResizerTests : public QObject { Q_OBJECT public: FSResizerTests(); ~FSResizerTests() override; private Q_SLOTS: void initTestCase(); // Can handle missing values void testConfigurationRobust(); // Can parse % and MiB values void testConfigurationValues(); }; #endif