summaryrefslogtreecommitdiff
path: root/src/tests/elementary/elm_test_slideshow.c
blob: 8edacc5e9f89474ef6c7d7a5cb3b6333ff475a3b (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
#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, *slideshow;
   Elm_Atspi_Role role;

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

   slideshow = elm_slideshow_add(win);
   role = elm_interface_atspi_accessible_role_get(slideshow);

   ck_assert(role == ELM_ATSPI_ROLE_DOCUMENT_PRESENTATION);

   elm_shutdown();
}
END_TEST

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