File indexing completed on 2024-04-14 03:58:00

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 AlternativesModelTest : public QObject
0014 {
0015     Q_OBJECT
0016 private Q_SLOTS:
0017     void initTestCase();
0018     void runJobTest();
0019     void bigBufferTest();
0020     void disablePluginTest();
0021     void blacklistTest();
0022 
0023 private:
0024     QTemporaryDir m_tempDir;
0025 };
0026 
0027 #endif