Searched refs:test_cls_name (Results 1 – 2 of 2) sorted by relevance
| /test/testfwk/xdevice/plugins/devicetest/runner/ |
| D | prepare.py | 103 test_cls_name, test_case_names = tokens 106 self.parse_prepare_config(test_cls_name, xml_path) 115 def _init_run_prepare(self, test_cls_name): argument 126 test_cls_name) 150 test_cls_name = os.path.join(prepare_path, cls + '.py') 151 if not os.access(test_cls_name, os.F_OK): 152 test_cls_name = os.path.join(prepare_path, 154 if not os.access(test_cls_name, os.F_OK): 159 self.project.cur_case_full_path = test_cls_name 162 "Success to import {}.".format(test_cls_name))
|
| D | test_runner.py | 197 for test_cls_name in self.run_list: 198 case_name = get_base_name(test_cls_name) 201 self.log.info("Executing test class {}".format(test_cls_name)) 203 self.run_test_class(test_cls_name, case_name) 217 def run_test_class(self, test_cls_name, case_name, time_out=0): argument 233 case_dir_path = get_dir_path(test_cls_name) 236 self.project.cur_case_full_path = test_cls_name 354 def run_test_suite(self, test_cls_name): argument 365 suite_dir_path = get_dir_path(test_cls_name)
|