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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include <gtest/gtest.h>
#include "dinputdialog.h"
DWIDGET_USE_NAMESPACE
class ut_DInputDialog : public testing::Test
{
protected:
void SetUp() override
{
target = new DInputDialog();
}
void TearDown() override
{
if (target) {
delete target;
target = nullptr;
}
}
DInputDialog *target = nullptr;
};
TEST_F(ut_DInputDialog, setCancelButtonText)
{
target->setCancelButtonText("setCancelButtonText");
ASSERT_EQ(target->cancelButtonText(), "setCancelButtonText");
};
TEST_F(ut_DInputDialog, setComboBoxCurrentIndex)
{
target->setComboBoxItems({"setComboBoxItems", "setComboBoxItems2"});
target->setComboBoxCurrentIndex(1);
ASSERT_EQ(target->comboBoxCurrentIndex(), 1);
};
TEST_F(ut_DInputDialog, setComboBoxEditable)
{
target->setComboBoxEditable(true);
ASSERT_EQ(target->isComboBoxEditable(), true);
};
TEST_F(ut_DInputDialog, setComboBoxItems)
{
target->setComboBoxItems({"setComboBoxItems"});
ASSERT_EQ(target->comboBoxItems().size(), QStringList{"setComboBoxItems"}.size());
};
TEST_F(ut_DInputDialog, setDoubleDecimals)
{
target->setDoubleDecimals(1);
ASSERT_EQ(target->doubleDecimals(), 1);
};
TEST_F(ut_DInputDialog, setDoubleMaximum)
{
target->setDoubleMaximum(0);
ASSERT_EQ(target->doubleMaximum(), 0);
};
TEST_F(ut_DInputDialog, setDoubleMinimum)
{
target->setDoubleMinimum(0);
ASSERT_EQ(target->doubleMinimum(), 0);
};
TEST_F(ut_DInputDialog, setDoubleRange)
{
target->setDoubleRange(0, 0);
};
TEST_F(ut_DInputDialog, setDoubleValue)
{
target->setDoubleValue(0);
ASSERT_EQ(target->doubleValue(), 0);
};
TEST_F(ut_DInputDialog, setInputMode)
{
target->setInputMode(DInputDialog::TextInput);
ASSERT_EQ(target->inputMode(), DInputDialog::TextInput);
};
TEST_F(ut_DInputDialog, setIntMaximum)
{
target->setIntMaximum(1);
ASSERT_EQ(target->intMaximum(), 1);
};
TEST_F(ut_DInputDialog, setIntMinimum)
{
target->setIntMinimum(1);
ASSERT_EQ(target->intMinimum(), 1);
};
TEST_F(ut_DInputDialog, setIntRange)
{
target->setIntRange(1, 1);
};
TEST_F(ut_DInputDialog, setIntStep)
{
target->setIntStep(1);
ASSERT_EQ(target->intStep(), 1);
};
TEST_F(ut_DInputDialog, setIntValue)
{
target->setIntValue(1);
ASSERT_EQ(target->intValue(), 1);
};
TEST_F(ut_DInputDialog, setOkButtonEnabled)
{
target->setOkButtonEnabled(true);
ASSERT_EQ(target->okButtonIsEnabled(), true);
};
TEST_F(ut_DInputDialog, setOkButtonText)
{
target->setOkButtonText("setOkButtonText");
ASSERT_EQ(target->okButtonText(), "setOkButtonText");
};
TEST_F(ut_DInputDialog, setTextAlert)
{
target->setTextAlert(true);
ASSERT_EQ(target->isTextAlert(), true);
};
TEST_F(ut_DInputDialog, setTextEchoMode)
{
target->setTextEchoMode(QLineEdit::Normal);
ASSERT_EQ(target->textEchoMode(), QLineEdit::Normal);
};
TEST_F(ut_DInputDialog, setTextValue)
{
target->setTextValue("setTextValue");
ASSERT_EQ(target->textValue(), "setTextValue");
};
|