efl/src/tests/elementary/elm_test_box.c

30 lines
509 B
C

#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif
#define EFL_ACCESS_BETA
#include <Elementary.h>
#include "elm_suite.h"
START_TEST (elm_atspi_role_get)
{
Evas_Object *win, *box;
Efl_Access_Role role;
elm_init(1, NULL);
win = elm_win_add(NULL, "box", ELM_WIN_BASIC);
box = elm_box_add(win);
role = efl_access_role_get(box);
ck_assert(role == EFL_ACCESS_ROLE_FILLER);
elm_shutdown();
}
END_TEST
void elm_test_box(TCase *tc)
{
tcase_add_test(tc, elm_atspi_role_get);
}