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
|
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include <gtest/gtest.h>
#include <QTest>
#include <QDebug>
#include "dboxwidget.h"
DWIDGET_USE_NAMESPACE
class ut_DBoxWidget : public testing::Test
{
protected:
void SetUp() override;
void TearDown() override;
QWidget *widget = nullptr;
};
void ut_DBoxWidget::SetUp()
{
widget = new QWidget;
}
void ut_DBoxWidget::TearDown()
{
widget->deleteLater();
}
TEST_F(ut_DBoxWidget, createMimeDataFromSelection)
{
widget->resize(200, 200);
QBoxLayout::Direction direction = QBoxLayout::LeftToRight;
DBoxWidget box(direction, widget);
// 测试方向设置是否正确
ASSERT_EQ(box.direction() == direction, true);
for (direction = QBoxLayout::LeftToRight; direction < QBoxLayout::Up;) {
box.setDirection(direction);
ASSERT_EQ(box.direction() == direction, true);
int direct = direction;
direction = (QBoxLayout::Direction)(direct + 1);
}
// 测试设置大小是否正确
QSize size(200, 200);
box.setFixedSize(size);
ASSERT_TRUE(box.size() == size);
// 测试设置方向的信号是否正确
QObject::connect(&box, &DBoxWidget::directionChanged, widget, [this, &box](QBoxLayout::Direction direction){
ASSERT_TRUE(box.direction() == direction);
});
box.setDirection(QBoxLayout::LeftToRight);
}
|