File: ut_buttonbox.cpp

package info (click to toggle)
dtkdeclarative 5.7.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 29,848 kB
  • sloc: cpp: 20,566; ansic: 66; makefile: 29; sh: 25
file content (19 lines) | stat: -rw-r--r-- 448 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later

#include <gtest/gtest.h>
#include "test_helper.hpp"

class ut_ButtonBox : public ::testing::Test
{
public:
};

TEST_F(ut_ButtonBox, properties)
{
    ControlHelper<> helper("qrc:/qml/ButtonBox.qml");
    ASSERT_TRUE(helper.object);
    QQmlListReference buttons(helper.object, "buttons");
    ASSERT_EQ(buttons.count(), 2);
}