/* This file is part of the KDE libraries SPDX-FileCopyrightText: 2024 Waqar Ahmed #include #include class SwapFileTest : public QObject { Q_OBJECT public Q_SLOTS: void initTestCase(); private Q_SLOTS: void testSwapFileIsCreatedAndDestroyed(); private: QString createFile(const QByteArray &content); private: std::unique_ptr m_testDir; }; #endif