--- /dev/null
+#include <check.h>
+#define EFL_BETA_API_SUPPORT
+#include <Elementary.h>
+
+Evas_Object *main_win = NULL;
+
+/**
+ * @addtogroup elm_atspi
+ * @{
+ * @defgroup elm_atspi_component_highlight
+ * elm_atspi_component_highlight_grab
+ * elm_atspi_component_highlight_clear
+ *
+ * @precondition
+ * @step 1 Initialize Elementary
+ * @step 2 Create and show main window
+ */
+
+static void
+setup(void)
+{
+ printf(" ============ Startup ============ \n");
+ elm_init(0, NULL);
+
+ 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_component_highlight
+ * @{
+ * @objective Positive test case check work of functions without errors
+ *
+ * @n Input Data:
+ * @li pointer to object.
+ *
+ * @procedure
+ * @step 1 Create button widget
+ * @step 2 Call elm_atspi_component_highlight_grab()
+ * @step 3 Call elm_atspi_component_highlight_clear()
+ * @step 4 Check results
+ *
+ * @passcondition : Functions worked and no segmentation fault
+ * @}
+ */
+START_TEST(utc_elm_atspi_component_highlight_p)
+{
+ Evas_Object *btn = NULL;
+ Eina_Bool clear = EINA_FALSE;
+ Eina_Bool grab = EINA_FALSE;
+
+ btn = elm_button_add(main_win);
+
+ grab = elm_atspi_component_highlight_grab(btn);
+ clear = elm_atspi_component_highlight_clear(btn);
+
+ /*TODO: Uncomment when will be possible to check
+ if (!clear)
+ {
+ ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__);
+ }
+ if (!grab)
+ {
+ ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__);
+ }
+ */
+
+ printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
+}
+END_TEST
+
+/**
+ *@}
+ */
+Suite *
+test_suite(void)
+{
+ Suite *suite = suite_create("utc_elm_atspi_component_highlight");
+
+ TCase *tcase = tcase_create("TCase");
+ tcase_set_timeout(tcase, 30);
+ tcase_add_checked_fixture(tcase, setup, teardown);
+ tcase_add_test(tcase, utc_elm_atspi_component_highlight_p);
+ suite_add_tcase(suite, tcase);
+
+ return suite;
+}
+
+int
+main()
+{
+ int number_failed;
+
+ Suite *suite = test_suite();
+ SRunner *srunner = srunner_create(suite);
+ srunner_set_log(srunner, "utc_elm_atspi_component_highlight.log");
+ srunner_set_xml(srunner, "utc_elm_atspi_component_highlight.xml");
+ srunner_run_all(srunner, CK_NORMAL);
+ number_failed = srunner_ntests_failed(srunner);
+ srunner_free(srunner);
+
+ return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
+}