File indexing completed on 2024-04-21 04:00:31

0001 /*
0002     SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef ALTERNATIVESMODELTEST_H
0008 #define ALTERNATIVESMODELTEST_H
0009 
0010 #include <QObject>
0011 #include <QTemporaryDir>
0012 
0013 class MenuTest : public QObject
0014 {
0015     Q_OBJECT
0016 private Q_SLOTS:
0017     void initTestCase();
0018     void runJobTest();
0019 
0020 private:
0021     QTemporaryDir m_tempDir;
0022 };
0023 
0024 #endif