mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
11 lines
210 B
C++
11 lines
210 B
C++
#include "widgets/dialog_title.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(DialgTitle, cast) {
|
|
widget_t* w = dialog_title_create(NULL, 10, 20, 30, 40);
|
|
|
|
ASSERT_EQ(w, dialog_title_cast(w));
|
|
|
|
widget_destroy(w);
|
|
}
|