1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include <gtest/gtest.h>
#include <QSignalSpy>
#include "dprintpickcolorwidget.h"
DWIDGET_USE_NAMESPACE
class ut_ColorButton : public testing::Test
{
protected:
void SetUp() override
{
target = new ColorButton(Qt::red);
}
void TearDown() override
{
if (target) {
delete target;
target = nullptr;
}
}
ColorButton *target = nullptr;
};
class ut_ColorLabel : public testing::Test
{
protected:
void SetUp() override
{
target = new ColorLabel();
}
void TearDown() override
{
if (target) {
delete target;
target = nullptr;
}
}
ColorLabel *target = nullptr;
};
//TEST_F(ut_ColorLabel, pickColor)
//{
// QSignalSpy spy(target, &ColorLabel::pickColor);
// target->pickColor(QPoint(10, 10));
// ASSERT_EQ(spy.count(), 1);
//};
class ut_ColorSlider : public testing::Test
{
protected:
void SetUp() override
{
target = new ColorSlider();
}
void TearDown() override
{
if (target) {
delete target;
target = nullptr;
}
}
ColorSlider *target = nullptr;
};
TEST_F(ut_ColorSlider, getColor)
{
};
class ut_DPrintPickColorWidget : public testing::Test
{
protected:
void SetUp() override
{
target = new DPrintPickColorWidget(nullptr);
}
void TearDown() override
{
if (target) {
delete target;
target = nullptr;
}
}
DPrintPickColorWidget *target = nullptr;
};
TEST_F(ut_DPrintPickColorWidget, convertColor)
{
target->convertColor(Qt::red, true);
};
TEST_F(ut_DPrintPickColorWidget, initConnection)
{
target->initConnection();
};
TEST_F(ut_DPrintPickColorWidget, initUI)
{
target->initUI();
};
TEST_F(ut_DPrintPickColorWidget, setRgbEdit)
{
target->setRgbEdit(Qt::red, true);
};
TEST_F(ut_DPrintPickColorWidget, slotColorPick)
{
target->slotColorPick("slotColorPick", "slotColorPick");
};
TEST_F(ut_DPrintPickColorWidget, slotEditColor)
{
target->slotEditColor("slotEditColor");
};
|