mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
11 lines
210 B
C++
11 lines
210 B
C++
|
#include "scroll_view/list_view_h.h"
|
|||
|
#include "gtest/gtest.h"
|
|||
|
|
|||
|
TEST(ListViewH, cast) {
|
|||
|
widget_t* w = list_view_h_create(NULL, 10, 20, 30, 40);
|
|||
|
|
|||
|
ASSERT_EQ(w, list_view_h_cast(w));
|
|||
|
|
|||
|
widget_destroy(w);
|
|||
|
}
|