tests/ecore_wl2: Add test for ecore_wl2_input_keymap_get

ref T8016
This commit is contained in:
Christopher Michael 2019-08-01 08:59:26 -04:00
parent f15ca5e227
commit 2c4b26ef4e
1 changed files with 22 additions and 0 deletions

View File

@ -88,6 +88,27 @@ EFL_START_TEST(wl2_input_display_get)
}
EFL_END_TEST
EFL_START_TEST(wl2_input_keymap_get)
{
Ecore_Wl2_Display *disp;
Ecore_Wl2_Input *input;
Eina_Iterator *itr;
disp = _display_connect();
ck_assert(disp != NULL);
itr = ecore_wl2_display_inputs_get(disp);
ck_assert(itr != NULL);
EINA_ITERATOR_FOREACH(itr, input)
{
ck_assert(ecore_wl2_input_keymap_get(input) != NULL);
}
eina_iterator_free(itr);
}
EFL_END_TEST
void
ecore_wl2_test_input(TCase *tc)
{
@ -96,5 +117,6 @@ ecore_wl2_test_input(TCase *tc)
tcase_add_test(tc, wl2_input_seat_get);
tcase_add_test(tc, wl2_input_seat_id_get);
tcase_add_test(tc, wl2_input_display_get);
tcase_add_test(tc, wl2_input_keymap_get);
}
}