Home
last modified time | relevance | path

Searched refs:test_obj (Results 1 – 2 of 2) sorted by relevance

/src/contrib/libucl/tests/
H A Dtest_generate.c44 ucl_object_t *obj, *cur, *ar, *ar1, *ref, *test_obj, *comments; in main() local
182 test_obj = ucl_object_new_full (UCL_OBJECT, 2); in main()
183 ucl_object_insert_key (test_obj, cur, "key16", 0, true); in main()
184 ucl_object_merge (obj, test_obj, true); in main()
185 ucl_object_unref (test_obj); in main()
187 test_obj = ucl_object_new_full (UCL_ARRAY, 3); in main()
188 ucl_array_append (test_obj, ucl_object_fromstring ("test")); in main()
189 ucl_array_merge (test_obj, ar1, false); in main()
190 ucl_object_insert_key (obj, test_obj, "key17", 0, true); in main()
/src/tests/atf_python/
H A Datf_pytest.py179 for test_obj in tests:
180 has_cleanup = self.has_object_cleanup(test_obj)
181 atf_test = ATFTestObj(test_obj, has_cleanup)