[Refactoring] Removed trailing whitespaces.
[framework/uifw/elementary.git] / TC / elm_ts / controlbar / utc_UIFW_elm_controlbar_object_item_append_func.c
1 #include <tet_api.h>
2 #include <Elementary.h>
3
4 // Definitions
5 // For checking the result of the positive test case.
6 #define TET_CHECK_PASS(x1, y...) \
7 { \
8         Evas_Object *err = y; \
9         if (err == (x1)) \
10                 { \
11                         tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
12                         tet_result(TET_FAIL); \
13                         return; \
14                 } \
15 }
16
17 // For checking the result of the negative test case.
18 #define TET_CHECK_FAIL(x1, y...) \
19 { \
20         Evas_Object *err = y; \
21         if (err != (x1)) \
22                 { \
23                         tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
24                         tet_result(TET_FAIL); \
25                         return; \
26                 } \
27 }
28
29
30 Evas_Object *main_win;
31 Evas_Object *controlbar;
32 Evas_Object *button;
33
34 static void startup(void);
35 static void cleanup(void);
36
37 void (*tet_startup)(void) = startup;
38 void (*tet_cleanup)(void) = cleanup;
39
40 static void utc_UIFW_elm_controlbar_object_item_append_func_01(void);
41 static void utc_UIFW_elm_controlbar_object_item_append_func_02(void);
42
43 enum {
44         POSITIVE_TC_IDX = 0x01,
45         NEGATIVE_TC_IDX,
46 };
47
48 struct tet_testlist tet_testlist[] = {
49         { utc_UIFW_elm_controlbar_object_item_append_func_01, POSITIVE_TC_IDX },
50         { utc_UIFW_elm_controlbar_object_item_append_func_02, NEGATIVE_TC_IDX },
51         { NULL, 0 }
52 };
53
54 static void startup(void)
55 {
56         tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
57         elm_init(0, NULL);
58         main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
59         evas_object_show(main_win);
60
61         controlbar = elm_controlbar_add(main_win);
62
63         button = elm_button_add(controlbar);
64         elm_button_label_set(button, "button");
65 }
66
67 static void cleanup(void)
68 {
69         if ( NULL != main_win ) {
70                 evas_object_del(main_win);
71                 main_win = NULL;
72         }
73         if ( NULL != controlbar ) {
74                 evas_object_del(controlbar);
75                 controlbar = NULL;
76         }
77         if ( NULL != button ) {
78                 evas_object_del(button);
79                 button = NULL;
80         }
81
82         elm_shutdown();
83         tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
84 }
85
86 /**
87  * @brief Positive test case of elm_controlbar_object_item_append()
88  */
89 static void utc_UIFW_elm_controlbar_object_item_append_func_01(void)
90 {
91         Elm_Controlbar_Item *item = NULL;
92         item = elm_controlbar_object_item_append(controlbar, button, 3);
93
94         if (!item) {
95                 tet_infoline("elm_controlbar_object_item_append() failed in positive test case");
96                 tet_result(TET_FAIL);
97                 return;
98         }
99         tet_result(TET_PASS);
100 }
101
102 /**
103  * @brief Negative test case of ug_init elm_controlbar_object_item_append()
104  */
105 static void utc_UIFW_elm_controlbar_object_item_append_func_02(void)
106 {
107         Elm_Controlbar_Item *item = NULL;
108         item = elm_controlbar_object_item_append(NULL, button, 3);
109
110         if (item) {
111                 tet_infoline("elm_controlbar_object_item_append() failed in negative test case");
112                 tet_result(TET_FAIL);
113                 return;
114         }
115         tet_result(TET_PASS);
116 }