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

11 lines
191 B
C++
Raw Normal View History

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