linuxOS_D21X/source/artinchip/awtk-ui/awtk/tests/group_box_test.cc

12 lines
218 B
C++
Raw Normal View History

2024-11-29 08:23:11 +00:00
#include "widgets/group_box.h"
#include "gtest/gtest.h"
TEST(GroupBox, cast) {
widget_t* w = group_box_create(NULL, 10, 20, 30, 40);
ASSERT_EQ(w, group_box_cast(w));
widget_destroy(w);
idle_dispatch();
}