mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
20 lines
386 B
C++
20 lines
386 B
C++
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
//#include "module_widget.h"
|
|
|
|
#include <QWidget>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
class Test_ModuleWidget : public QObject, public ::testing::Test
|
|
{};
|
|
|
|
TEST_F(Test_ModuleWidget, updateSliderValue)
|
|
{
|
|
//ModuleWidget widget;
|
|
|
|
//widget.updateSliderValue();
|
|
}
|