2019-02-26 10:09:27 +08:00
|
|
|
|
#include "widgets/grid.h"
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
|
|
TEST(Grid, cast) {
|
|
|
|
|
widget_t* w = grid_create(NULL, 10, 20, 30, 40);
|
|
|
|
|
|
|
|
|
|
ASSERT_EQ(w, grid_cast(w));
|
|
|
|
|
|
|
|
|
|
widget_destroy(w);
|
2020-10-18 12:17:55 +08:00
|
|
|
|
idle_dispatch();
|
2019-02-26 10:09:27 +08:00
|
|
|
|
}
|