Searched refs:test_cls_name (Results 1 – 2 of 2) sorted by relevance
86 def _verify_test_class_name(test_cls_name): argument87 if not test_cls_name.endswith("Test"):89 "class naming convention *Test.") % test_cls_name)112 test_cls_name = tokens[0]113 _verify_test_class_name(test_cls_name)114 return (test_cls_name, None)118 test_cls_name, test_case_names = tokens120 _verify_test_class_name(test_cls_name)127 test_case_name, test_cls_name))129 return (test_cls_name, clean_names)
116 for test_cls_name, _ in self.run_list:118 alt_cls_name = test_cls_name.lower()122 if name == test_cls_name or alt_name == alt_cls_name:124 "abort.") % test_cls_name305 def run_test_class(self, test_cls_name, test_cases=None): argument321 test_cls = self.test_classes[test_cls_name]324 "paths specified.") % test_cls_name)353 for test_cls_name, test_case_names in self.run_list:359 test_cls_name)361 self.log.debug("Executing test class %s", test_cls_name)[all …]