mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
11 lines
216 B
C++
11 lines
216 B
C++
#include "color_picker/color_picker.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(ColorPicker, cast) {
|
|
widget_t* w = color_picker_create(NULL, 10, 20, 30, 40);
|
|
|
|
ASSERT_EQ(w, color_picker_cast(w));
|
|
|
|
widget_destroy(w);
|
|
}
|