File indexing completed on 2024-05-19 05:34:39

0001 /*
0002     SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef THEMETEST_H
0007 #define THEMETEST_H
0008 
0009 #include <QTest>
0010 
0011 #include "plasma/theme.h"
0012 
0013 class ThemeTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public Q_SLOTS:
0018     void initTestCase();
0019 
0020 private Q_SLOTS:
0021     void testThemeConfig_data();
0022     void testThemeConfig();
0023     void testColors();
0024     void testCompositingChange();
0025 
0026 private:
0027     Plasma::Theme *m_theme;
0028 };
0029 
0030 #endif