--- /dev/null
+#include <check.h>
+#include <Elementary.h>
+#include "../../utc_negative_unitest.h"
+Evas_Object *main_win = NULL, *popup = NULL;
+
+/**
+ * @addtogroup elm_popup
+ * @{
+ * @defgroup elm_popup_scrollable_set elm_popup_scrollable_set()
+ *
+ * @precondition
+ * @step 1 Initialize Elementary
+ * @step 2 Create and show main window
+ * @step 3 Add a popup to the 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__);
+ return;
+ }
+ evas_object_show(main_win);
+ popup = elm_popup_add(main_win);
+ if (popup == NULL)
+ {
+ ck_abort_msg("[TEST_FAIL]:: %s[%d] : Unable to add a box to the main window..", __FILE__, __LINE__);
+ return;
+ }
+}
+
+static void
+teardown(void)
+{
+ if (main_win != NULL)
+ {
+ evas_object_del(main_win);
+ main_win = NULL;
+ }
+ elm_shutdown();
+ printf(" ============ Cleanup ============ \n");
+}
+
+/**
+ * @addtogroup elm_popup_scrollable_set
+ * @{
+ * @objective Positive Test case p_1 checks if function call with valid values to set the scroller
+ * of the popup object works properly and without segmentation fault
+ * @n Input Data:
+ * @li the popup object
+ * @li the scroller value
+ *
+ * @procedure
+ * @step 1 Call elm_popup_scrollable_set with valid values
+ * @step 2 Get the scroll value of the popup object
+ *
+ * @passcondition Test passes if returned value is same as specified value and there is no segmentation fault
+ * @}
+ */
+
+START_TEST(utc_elm_popup_scrollable_get_set_p_1)
+{
+ if (main_win == NULL || popup == NULL)
+ {
+ return;
+ }
+
+ elm_popup_scrollable_set(popup, EINA_TRUE);
+ Eina_Bool ret = elm_popup_scrollable_get(popup);
+ if (!ret)
+ {
+ ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
+ return;
+ }
+ printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
+}
+END_TEST
+
+/**
+ * @addtogroup elm_popup_scrollable_set
+ * @{
+ * @objective Negative Test case n_1 checks if function call with invalid value to get the scroller
+ * of the popup object works properly and without segmentation fault
+ * @n Input Data:
+ * @li NULL instead of the popup object
+ *
+ * @procedure
+ * @step 1 Call elm_popup_scrollable_get_set with invalid value instead of the popup object
+ *
+ * @passcondition Test passes if there is no segmentation fault
+ * @}
+ */
+
+START_TEST(utc_elm_popup_scrollable_get_n_1)
+{
+ if (main_win == NULL || popup == NULL)
+ {
+ return;
+ }
+
+ Eina_Bool ret = elm_popup_scrollable_get(NULL);
+ if (ret)
+ {
+ ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
+ return;
+ }
+ printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
+}
+END_TEST
+
+/**
+ * @addtogroup elm_popup_scrollable_set
+ * @{
+ * @objective Negative Test case n_1 checks if function call with invalid value to set the scroller
+ * of the popup object works properly and without segmentation fault
+ * @n Input Data:
+ * @li NULL instead of the popup object
+ *
+ * @procedure
+ * @step 1 Call elm_popup_scrollable_set with invalid value instead of the popup object
+ *
+ * @passcondition Test passes if there is no segmentation fault
+ * @}
+ */
+
+START_TEST(utc_elm_popup_scrollable_set_n_1)
+{
+ if (main_win == NULL || popup == NULL)
+ {
+ return;
+ }
+
+ elm_popup_scrollable_set(NULL, EINA_TRUE);
+ printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
+}
+END_TEST
+
+
+TCase * _utc_elm_popup_scrollable_get_set()
+{
+ TCase *tcase = tcase_create("utc_elm_popup_scrollable_get_set");
+ tcase_set_timeout(tcase, 30);
+ tcase_add_checked_fixture(tcase, setup, teardown);
+ tcase_add_test(tcase, utc_elm_popup_scrollable_get_set_p_1);
+ tcase_add_test(tcase, utc_elm_popup_scrollable_get_n_1);
+ tcase_add_test(tcase, utc_elm_popup_scrollable_set_n_1);
+ return tcase;
+}