summaryrefslogtreecommitdiff
path: root/src/tests/elementary/elm_test_box.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/elementary/elm_test_box.c')
-rw-r--r--src/tests/elementary/elm_test_box.c35
1 files changed, 27 insertions, 8 deletions
diff --git a/src/tests/elementary/elm_test_box.c b/src/tests/elementary/elm_test_box.c
index 9e02995f90..56261ec7ac 100644
--- a/src/tests/elementary/elm_test_box.c
+++ b/src/tests/elementary/elm_test_box.c
@@ -2,28 +2,47 @@
# include "elementary_config.h"
#endif
-#define EFL_ACCESS_BETA
+#define EFL_ACCESS_OBJECT_BETA
#include <Elementary.h>
#include "elm_suite.h"
-START_TEST (elm_atspi_role_get)
+EFL_START_TEST (elm_box_legacy_type_check)
+{
+ Evas_Object *win, *box;
+ const char *type;
+
+ win = win_add(NULL, "box", ELM_WIN_BASIC);
+
+ box = elm_box_add(win);
+
+ type = elm_object_widget_type_get(box);
+ ck_assert(type != NULL);
+ ck_assert(!strcmp(type, "Elm_Box"));
+
+ type = evas_object_type_get(box);
+ ck_assert(type != NULL);
+ ck_assert(!strcmp(type, "elm_box"));
+
+}
+EFL_END_TEST
+
+EFL_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);
+ win = win_add(NULL, "box", ELM_WIN_BASIC);
box = elm_box_add(win);
- role = efl_access_role_get(box);
+ role = efl_access_object_role_get(box);
ck_assert(role == EFL_ACCESS_ROLE_FILLER);
- elm_shutdown();
}
-END_TEST
+EFL_END_TEST
void elm_test_box(TCase *tc)
{
- tcase_add_test(tc, elm_atspi_role_get);
+ tcase_add_test(tc, elm_box_legacy_type_check);
+ tcase_add_test(tc, elm_atspi_role_get);
}