[Refactoring] Removed trailing whitespaces.
[framework/uifw/elementary.git] / TC / elm_ts / gengrid / utc_UIFW_elm_gengrid_align_get_func.c
index 69d4078..03919da 100644 (file)
@@ -47,7 +47,7 @@ void _elm_precondition(void)
        evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
 
        evas_object_resize(main_win, 320, 480);
-       evas_object_show(main_win);     
+       evas_object_show(main_win);
 }
 
 static void startup(void);
@@ -79,18 +79,18 @@ static void startup(void)
        test_win = elm_win_add(NULL, "Page Control", ELM_WIN_BASIC);
        elm_win_title_set(test_win, "Page Control");
        elm_win_autodel_set(test_win, 1);
-       
+
        test_bg = elm_bg_add(test_win);
        elm_win_resize_object_add(test_win, test_bg);
        evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
        evas_object_show(test_bg);
-       
+
        evas_object_resize(test_win, 480, 800);
        evas_object_show(test_win);
 
        test_eo = elm_gengrid_add(test_win);
        elm_gengrid_align_set(test_eo, 0.5, 0.5);
-       
+
        tet_infoline("[[ TET_MSG ]]:: Completing startup");
 }
 
@@ -99,25 +99,25 @@ static void cleanup(void)
        if ( NULL != main_win ) {
                main_win = NULL;
        }
-       
+
        if ( NULL != main_bg ) {
                main_bg = NULL;
        }
-       
+
        if ( NULL != test_win ) {
                test_win = NULL;
        }
-       
+
        if ( NULL != test_bg ) {
                test_bg = NULL;
        }
-       
+
        if ( NULL != test_eo ) {
                test_eo = NULL;
        }
-       
+
        elm_exit();
-       
+
        tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
 }
 
@@ -128,7 +128,7 @@ static void utc_UIFW_elm_gengrid_align_get_func_01(void)
        elm_gengrid_align_get(test_eo, &x, &y);
        TET_CHECK_PASS(-1, x);
        TET_CHECK_PASS(-1, y);
-       
+
        tet_result(TET_PASS);
        tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, elm_gengrid_align_get");
 }
@@ -140,7 +140,7 @@ static void utc_UIFW_elm_gengrid_align_get_func_02(void)
        elm_gengrid_align_get(NULL, &x, &y);
        TET_CHECK_FAIL(-1, x);
        TET_CHECK_FAIL(-1, y);
-       
+
        tet_result(TET_PASS);
        tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, elm_gengrid_align_get");
 }