Lines Matching defs:group
198 NULL, NULL, NULL, "group", NULL, FALSE
204 string_t *str, *group;
210 group = t_str_new(256);
236 str_truncate(group, 0);
237 str_append(group, test->input);
240 str_append(group, ",");
242 str_append(group, " , \n ");
243 str_append(group, test->input);
246 addr = test_parse_address(str_c(group), fill_missing);
256 /* test the address as a group of itself */
258 str_truncate(group, 0);
259 str_printfa(group, "group: %s", test->input);
262 str_append(group, ",");
264 str_append(group, " , \n ");
265 str_append(group, test->input);
267 str_append_c(group, ';');
269 addr = test_parse_address(str_c(group), fill_missing);
284 test_begin("message address parsing with empty group");
285 str_truncate(group, 0);
286 str_append(group, "group:;");
287 addr = test_parse_address(str_c(group), FALSE);
294 test_assert(strcmp(str_c(str), "group:;") == 0);