mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 03:28:53 +08:00
13 lines
266 B
C++
13 lines
266 B
C++
#include "widgets/window.h"
|
|
#include "widgets/system_bar.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(SystemBar, cast) {
|
|
widget_t* w = system_bar_create(NULL, 10, 20, 30, 40);
|
|
|
|
ASSERT_EQ(w, system_bar_cast(w));
|
|
ASSERT_EQ(w, window_base_cast(w));
|
|
|
|
window_close(w);
|
|
}
|