Files
luban-lite-t3e-pro/packages/third-party/awtk-ui/awtk/tests/group_box_test.cc
刘可亮 3b4064f334 v1.0.2
2023-11-30 19:48:02 +08:00

12 lines
218 B
C++

#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();
}