| 166 | } |
| 167 | |
| 168 | static int |
| 169 | test_case_array_int(void) |
| 170 | { |
| 171 | int i; |
| 172 | |
| 173 | rte_tel_data_start_array(&response_data, RTE_TEL_INT_VAL); |
| 174 | for (i = 0; i < 5; i++) |
| 175 | rte_tel_data_add_array_int(&response_data, i); |
| 176 | return CHECK_OUTPUT("[0,1,2,3,4]"); |
| 177 | } |
| 178 | |
| 179 | static int |
| 180 | test_case_add_dict_int(void) |
nothing calls this directly
no test coverage detected