efl/src/tests/elementary/elm_test_popup.c

31 lines
571 B
C

#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif
#define ELM_INTERFACE_ATSPI_ACCESSIBLE_PROTECTED
#include <Elementary.h>
#include "elm_suite.h"
START_TEST (elm_atspi_role_get)
{
Evas_Object *win, *popup;
Elm_Atspi_Role role;
elm_init(1, NULL);
win = elm_win_add(NULL, "popup", ELM_WIN_BASIC);
popup = elm_popup_add(win);
role = elm_interface_atspi_accessible_role_get(popup);
ck_assert(role == ELM_ATSPI_ROLE_NOTIFICATION);
elm_shutdown();
}
END_TEST
void elm_test_popup(TCase *tc)
{
tcase_add_test(tc, elm_atspi_role_get);
}