Lines Matching refs:methods
280 def _get_test_info_filter(self, path, methods, **kwargs): argument
300 kwargs.get('class_name', '*'), methods), frozenset())])
310 for method in methods:
312 methods = frozenset(update_methods)
314 [test_info.TestFilter(full_class_name, methods)])
333 test_finder_utils.get_cc_filter(file_class, methods),
339 [test_info.TestFilter(kwargs.get('class_name', None), methods)])
350 if methods:
353 % str(methods))
355 [test_info.TestFilter(package_name, methods)])
462 class_name, methods = test_finder_utils.split_methods(class_name)
471 [test_info.TestFilter(class_name, methods)])
504 class_name, methods = test_finder_utils.split_methods(class_name)
517 is_native_test, methods)
524 methods)
538 test_path, methods, class_name=class_name,
543 if test_infos and len(test_infos) > 1 and methods:
544 test_infos = self._get_matched_test_infos(test_infos, methods)
549 def _get_matched_test_infos(self, test_infos, methods): argument
570 for method in methods:
667 _, methods = test_finder_utils.split_methods(package)
668 if methods:
671 methods))
734 path, methods = test_finder_utils.split_methods(rel_path)
740 if (methods and
741 not test_finder_utils.has_method_in_file(path, methods)):
764 test_filter = self._get_test_info_filter(path, methods,