summaryrefslogtreecommitdiff
path: root/src/tests/elementary/elm_test_multibuttonentry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/elementary/elm_test_multibuttonentry.c')
-rw-r--r--src/tests/elementary/elm_test_multibuttonentry.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/tests/elementary/elm_test_multibuttonentry.c b/src/tests/elementary/elm_test_multibuttonentry.c
new file mode 100644
index 0000000000..9a8a34a26f
--- /dev/null
+++ b/src/tests/elementary/elm_test_multibuttonentry.c
@@ -0,0 +1,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, *multibuttonentry;
+ Elm_Atspi_Role role;
+
+ elm_init(1, NULL);
+ win = elm_win_add(NULL, "multibuttonentry", ELM_WIN_BASIC);
+
+ multibuttonentry = elm_multibuttonentry_add(win);
+ role = elm_interface_atspi_accessible_role_get(multibuttonentry);
+
+ ck_assert(role == ELM_ATSPI_ROLE_ENTRY);
+
+ elm_shutdown();
+}
+END_TEST
+
+void elm_test_multibuttonentry(TCase *tc)
+{
+ tcase_add_test(tc, elm_atspi_role_get);
+}