mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 03:28:53 +08:00
11 lines
226 B
C++
11 lines
226 B
C++
#include "widgets/tab_button_group.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(TabButtonGroup, cast) {
|
|
widget_t* w = tab_button_group_create(NULL, 10, 20, 30, 40);
|
|
|
|
ASSERT_EQ(w, tab_button_group_cast(w));
|
|
|
|
widget_destroy(w);
|
|
}
|