Lines Matching refs:alltests
248 def get_id_list(alltests): argument
252 return [x["id"] for x in alltests]
255 def check_case_id(alltests): argument
259 idl = get_id_list(alltests)
263 def does_id_exist(alltests, newid): argument
267 idl = get_id_list(alltests)
271 def generate_case_ids(alltests): argument
277 for c in alltests:
281 if (does_id_exist(alltests, newid)):
288 for c in alltests:
294 for t in alltests:
321 alltests = list()
323 alltests = alltests + (load_from_file(casefile))
324 return alltests
333 alltests = get_test_cases(args)
336 idlist = get_id_list(alltests)
338 alltests = generate_case_ids(alltests)
343 duplicate_ids = check_case_id(alltests)
350 ucat = get_test_categories(alltests)
353 show_test_case_by_id(alltests, args.showID[0])
372 testcases = get_categorized_testlist(alltests, ucat)
376 list_test_cases(alltests)
395 alltests = list(filter(lambda x: target_id in x['id'], alltests))
396 if (len(alltests) == 0):
399 catresults = test_runner(alltests, args)