Lines Matching refs:expected
125 const char **expected)
130 assert_non_null(expected);
134 assert_non_null(expected[i]);
135 assert_string_equal(input[i], expected[i]);
139 assert_null(expected[i]);
144 const char **expected,
148 check_opath_components(input, expected);
154 const char *expected[] = {"object", "path", "parts", NULL};
155 size_t expected_len = sizeof(expected) / sizeof(char *) - 1;
162 check_opath_components_and_length(components, len, expected, expected_len);
169 const char *expected[] = {"parts", NULL};
170 size_t expected_len = sizeof(expected) / sizeof(char *) - 1;
177 check_opath_components_and_length(components, len, expected, expected_len);
184 const char *expected[] = {"parts", NULL};
185 size_t expected_len = sizeof(expected) / sizeof(char *) - 1;
192 check_opath_components_and_length(components, len, expected, expected_len);
210 const char *expected[] = {"object", "redhat.com", NULL};
211 size_t expected_len = sizeof(expected) / sizeof(char *) - 1;
218 check_opath_components_and_length(components, len, expected, expected_len);
225 const char *expected[] = {"object", "path", "parts", NULL};
231 check_opath_components(components, expected);