#utc_elm_atspi_attributes.c
#utc_elm_atspi_bridge_connected_get.c
#utc_elm_atspi_bridge_utils_say.c
+#utc_elm_atspi_bridge_highlighted_object_read.c
#utc_elm_atspi_relation.c
utc_elm_atspi_component_highlight.c
--- /dev/null
+#include <check.h>
+#define EFL_BETA_API_SUPPORT
+#include <Elementary.h>
+#include "../utc_elm_common.h"
+
+static Evas_Object *main_win = NULL;
+
+/**
+ * @addtogroup elm_atspi
+ * @{
+ * @defgroup elm_atspi_bridge_highlighted_object_read elm_atspi_highlighted_object_read()
+ *
+ * @precondition
+ * @step 1 Initialize Elementary
+ * @step 2 Create and show main window
+ */
+
+static void
+setup(void)
+{
+ printf(" ============ Startup ============ \n");
+ UTC_ELM_INIT();
+
+ main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+ if (main_win == NULL)
+ {
+ ck_abort_msg("[TEST_FAIL]:: %s[%d] : Unable to create a main window..", __FILE__, __LINE__);
+ }
+ evas_object_show(main_win);
+}
+
+static void
+teardown(void)
+{
+ if (main_win != NULL)
+ {
+ evas_object_del(main_win);
+ main_win = NULL;
+ }
+
+ elm_shutdown();
+ printf(" ============ Cleanup ============ \n");
+}
+
+/**
+ * @addtogroup elm_atspi_bridge_highlighted_object_read_add
+ * @{
+ * @objective Positive test case check work of functions without errors
+ * @n Input Data:
+ *
+ * @procedure
+ * @step 1 Call elm_atspi_bridge_highlighted_object_read()
+ *
+ * @passcondition : Function worked and no segmentation fault
+ * @}
+ */
+START_TEST(utc_elm_atspi_bridge_highlighted_object_read_p)
+{
+ elm_atspi_bridge_highlighted_object_read();
+ printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
+}
+END_TEST
+
+/**
+ *@}
+ */
+
+TCase * _utc_elm_atspi_bridge_highlighted_object_read()
+{
+ TCase *tcase = tcase_create("utc_elm_atspi_bridge_highlighted_object_read");
+ tcase_set_timeout(tcase, 30);
+ tcase_add_checked_fixture(tcase, setup, teardown);
+ tcase_add_test(tcase, utc_elm_atspi_bridge_highlighted_object_read_p);
+ return tcase;
+}
ELEMENTARY-wear
#/elementary/actionslider/tslist_wear
/elementary/animation_view/tslist_wear
-#/elementary/atspi/tslist_wear
+/elementary/atspi/tslist_wear
/elementary/bg/tslist_wear
/elementary/box/tslist_wear
#/elementary/bubble/tslist_wear