Changes in uspace/lib/ui/test/ui.c [3fd38b2:8965860c] in mainline
- File:
-
- 1 edited
-
uspace/lib/ui/test/ui.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/test/ui.c
r3fd38b2 r8965860c 169 169 } 170 170 171 /** ui_is_get_rect() */172 PCUT_TEST(get_rect)173 {174 ui_t *ui = NULL;175 gfx_rect_t rect;176 errno_t rc;177 178 rc = ui_create_disp(NULL, &ui);179 PCUT_ASSERT_ERRNO_VAL(EOK, rc);180 PCUT_ASSERT_NOT_NULL(ui);181 182 /* This won't work without a display service */183 rc = ui_get_rect(ui, &rect);184 PCUT_ASSERT_ERRNO_VAL(ENOTSUP, rc);185 186 ui_destroy(ui);187 }188 189 171 /** ui_lock(), ui_unlock() */ 190 172 PCUT_TEST(lock_unlock)
Note:
See TracChangeset
for help on using the changeset viewer.
