2020-08-13 21:08:54 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2016 David Rosca <nowrep@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2016-05-04 17:33:18 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-12-14 16:58:05 +01:00
|
|
|
#include <QTest>
|
2016-05-04 17:33:18 +02:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
class Applet;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConfigModelTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void configSchemeFromPackage();
|
|
|
|
void emptySourceWithApplet();
|
|
|
|
void notEmptySourceWithApplet();
|
|
|
|
|
|
|
|
};
|
|
|
|
|