Searched refs:para_name (Results 1 – 6 of 6) sorted by relevance
| /test/testfwk/xdevice/src/xdevice/_core/testkit/ |
| D | kit.py | 58 def get_class(junit_paras, prefix_char, para_name): argument 59 if not junit_paras.get(para_name): 70 for test in junit_paras.get(para_name): 80 prefix_char, para_name)) 109 for para_name in junit_paras.keys(): 111 if para_name.strip() == 'test-file-include-filter': 112 for file_name in junit_paras[para_name]: 117 elif para_name.strip() == "test-file-exclude-filter": 118 for file_name in junit_paras[para_name]: 124 elif para_name.strip() == "test" or para_name.strip() == "class": [all …]
|
| /test/testfwk/developer_test/src/core/driver/ |
| D | openharmony.py | 59 for para_name in junit_paras.keys(): 60 para_name = para_name.strip() 61 para_values = junit_paras.get(para_name, []) 62 if para_name == "class": 63 runner.add_arg(para_name, ",".join(para_values)) 64 elif para_name == "notClass": 65 runner.add_arg(para_name, ",".join(para_values)) 66 elif para_name == "testType": 70 runner.add_arg(para_name, para_values[0]) 71 elif para_name == "size": [all …]
|
| /test/testfwk/xdevice/plugins/devicetest/core/suite/ |
| D | test_suite.py | 377 for para_name in paras.keys(): 378 para_name = para_name.strip() 379 para_values = paras.get(para_name, []) 380 if para_name == "class": 382 elif para_name == "notClass": 384 elif para_name == "para": 388 elif para_name == "deveco_planet_info": 396 elif para_name == ConfigConst.pass_through:
|
| /test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/ |
| D | kit.py | 1099 for para_name in junit_paras.keys(): 1101 if para_name.strip() == 'test-file-include-filter': 1102 for file_name in junit_paras[para_name]: 1107 elif para_name.strip() == "test-file-exclude-filter": 1108 for file_name in junit_paras[para_name]: 1114 elif para_name.strip() == "test" or para_name.strip() == "class": 1115 result = get_class(junit_paras, prefix_char, para_name.strip()) 1117 elif para_name.strip() == "include-annotation": 1119 ['annotation', ",".join(junit_paras[para_name])])) 1120 elif para_name.strip() == "exclude-annotation": [all …]
|
| /test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
| D | openharmony.py | 68 for para_name in junit_paras.keys(): 69 para_name = para_name.strip() 70 para_values = junit_paras.get(para_name, []) 71 if para_name == "class": 72 runner.add_arg(para_name, ",".join(para_values)) 73 elif para_name == "notClass": 74 runner.add_arg(para_name, ",".join(para_values)) 75 elif para_name == "testType": 79 runner.add_arg(para_name, para_values[0]) 80 elif para_name == "size": [all …]
|
| /test/testfwk/xdevice/plugins/devicetest/core/ |
| D | test_case.py | 125 for para_name in paras.keys(): 126 para_name = para_name.strip() 127 para_values = paras.get(para_name, []) 128 if para_name == ConfigConst.pass_through:
|