mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

按照设计图更新UI Log: Task: https://pms.uniontech.com/zentao/task-view-86359.html Change-Id: I90f16bc2d39bbbc49f245e6ef76ac833e660e6b5
16 lines
251 B
C++
16 lines
251 B
C++
#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();
|
|
}
|