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
|
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include <gtest/gtest.h>
#include "dstackwidget.h"
DWIDGET_USE_NAMESPACE
class ut_DStackWidget : public testing::Test
{
protected:
void SetUp() override
{
target = new DStackWidget();
}
void TearDown() override
{
if (target) {
delete target;
target = nullptr;
}
}
DStackWidget *target = nullptr;
};
TEST_F(ut_DStackWidget, clear)
{
QWidget *widget = new QWidget();
target->insertWidget(0, widget);
target->clear();
ASSERT_EQ(target->depth(), 0);
};
TEST_F(ut_DStackWidget, currentIndex)
{
QWidget *widget = new QWidget();
target->pushWidget(widget, true);
ASSERT_EQ(target->currentIndex(), 0);
};
TEST_F(ut_DStackWidget, getWidgetByIndex)
{
QWidget *widget = new QWidget();
target->pushWidget(widget, true);
ASSERT_EQ(target->getWidgetByIndex(0), widget);
};
TEST_F(ut_DStackWidget, indexOf)
{
QWidget *widget = new QWidget();
target->pushWidget(widget, true);
ASSERT_EQ(target->indexOf(widget), 0);
};
TEST_F(ut_DStackWidget, insertWidget)
{
QWidget *widget = new QWidget();
target->insertWidget(0, widget);
ASSERT_EQ(target->depth(), 1);
};
TEST_F(ut_DStackWidget, popWidget)
{
QWidget *widget = new QWidget();
target->pushWidget(widget, true);
target->popWidget(nullptr);
ASSERT_EQ(target->depth(), 0);
};
TEST_F(ut_DStackWidget, pushWidget)
{
QWidget *widget = new QWidget();
target->pushWidget(widget, true);
ASSERT_EQ(target->currentWidget(), widget);
};
TEST_F(ut_DStackWidget, setAnimationDuration)
{
target->setAnimationDuration(1);
ASSERT_EQ(target->animationDuration(), 1);
};
TEST_F(ut_DStackWidget, setAnimationType)
{
target->setAnimationType(QEasingCurve::Linear);
ASSERT_EQ(target->animationType(), QEasingCurve::Linear);
};
TEST_F(ut_DStackWidget, setTransition)
{
auto transition = new DSlideStackWidgetTransition();
target->setTransition(transition);
ASSERT_EQ(target->transition(), transition);
};
|