Searched refs:test_cls_name (Results 1 – 2 of 2) sorted by relevance
166 test_cls_name = tokens[0]167 _validate_test_class_name(test_cls_name)168 return (test_cls_name, None)172 test_cls_name, test_case_names = tokens174 _validate_test_class_name(test_cls_name)182 test_cls_name))184 return (test_cls_name, clean_names)213 def _validate_test_class_name(test_cls_name): argument223 if not test_cls_name.endswith("Test"):226 "class naming convention *Test.") % test_cls_name)
87 test_cls_name = test_class.__name__90 test_configs = [config_parser.GetDefaultConfig(test_cls_name)]94 baseline_config = config_parser.GetDefaultConfig(test_cls_name)107 test_identifiers = [(test_cls_name, None)]228 for test_cls_name, _ in self.run_list:230 alt_cls_name = test_cls_name.lower()234 if name == test_cls_name or alt_name == alt_cls_name:236 "abort.") % test_cls_name436 for test_cls_name, test_case_names in self.run_list:441 test_case_names, test_cls_name)[all …]