mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
//#include "config_watcher.h"
|
|
|
|
#include <QWidget>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
//using namespace dcc_dock_plugin;
|
|
|
|
class Test_GSettingWatcher : public QObject, public ::testing::Test
|
|
{};
|
|
|
|
TEST_F(Test_GSettingWatcher, bind)
|
|
{
|
|
/* ConfigWatcher watcher("dde.dock.plugin.dconfig");
|
|
|
|
QWidget widget;
|
|
watcher.bind("Control-Center_Dock_Plugins", &widget);
|
|
watcher.bind("Control-Center_Dock_Plugins", nullptr);
|
|
watcher.bind("invalid", &widget);
|
|
watcher.bind("", &widget);
|
|
watcher.bind("", nullptr);
|
|
*/
|
|
}
|
|
|
|
TEST_F(Test_GSettingWatcher, setStatus)
|
|
{
|
|
/* ConfigWatcher watcher("dde.dock.plugin.dconfig");
|
|
|
|
QWidget widget;
|
|
watcher.bind("Control-Center_Dock_Plugins", &widget);
|
|
watcher.setStatus("Control-Center_Dock_Plugins", &widget);
|
|
*/
|
|
}
|
|
|
|
TEST_F(Test_GSettingWatcher, onStatusModeChanged)
|
|
{
|
|
/* ConfigWatcher watcher("dde.dock.plugin.dconfig");
|
|
|
|
QWidget widget;
|
|
watcher.bind("Control-Center_Dock_Plugins", &widget);
|
|
watcher.onStatusModeChanged("Control-Center_Dock_Plugins");
|
|
watcher.onStatusModeChanged("invalid");
|
|
watcher.onStatusModeChanged("");
|
|
*/
|
|
}
|