Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/test/ui.c

    r3fd38b2 r8965860c  
    169169}
    170170
    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 
    189171/** ui_lock(), ui_unlock() */
    190172PCUT_TEST(lock_unlock)
Note: See TracChangeset for help on using the changeset viewer.