summaryrefslogtreecommitdiff
path: root/src/tests/elementary/elm_test_glview.c
blob: 09dc2cbfd68e458bd1a2e31593881c7205d9c2a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifdef HAVE_CONFIG_H
# include "elementary_config.h"
#endif

#define EFL_ACCESS_PROTECTED
#include <Elementary.h>
#include "elm_suite.h"


START_TEST (elm_atspi_role_get)
{
   Evas_Object *win, *glview;
   Efl_Access_Role role;

   elm_init(1, NULL);
   win = elm_win_add(NULL, "glview", ELM_WIN_BASIC);

   glview = elm_glview_add(win);

   // if no gl backend skip test
   if (glview)
     {
        role = efl_access_role_get(glview);
        ck_assert(role == EFL_ACCESS_ROLE_ANIMATION);
     }

   elm_shutdown();
}
END_TEST

void elm_test_glview(TCase *tc)
{
 tcase_add_test(tc, elm_atspi_role_get);
}