Home
last modified time | relevance | path

Searched refs:split_methods (Results 1 – 5 of 5) sorted by relevance

/tools/asuite/atest/test_finders/
Dtest_finder_utils_unittest.py112 test_finder_utils.split_methods('Class.Name'),
116 test_finder_utils.split_methods('Class.Name#Method'),
120 test_finder_utils.split_methods('Class.Name#Method,Method2'),
124 test_finder_utils.split_methods('Class.Name#Method,Method2'),
128 test_finder_utils.split_methods('Class.Name#Method,Method2'),
131 atest_error.TooManyMethodsError, test_finder_utils.split_methods,
134 atest_error.MoreThanOneClassError, test_finder_utils.split_methods,
140 test_finder_utils.split_methods('foo/bar/class.java'),
144 test_finder_utils.split_methods('foo/bar/class.java#Method'),
149 test_finder_utils.split_methods('Class.Name#method[1],method[2,[3,4]]'),
Dmodule_finder.py496 class_name, methods = test_finder_utils.split_methods(class_name)
538 class_name, methods = test_finder_utils.split_methods(class_name)
706 _, methods = test_finder_utils.split_methods(package)
781 path, methods = test_finder_utils.split_methods(rel_path)
Dtf_integration_finder.py273 class_name, methods = test_finder_utils.split_methods(class_name)
313 path, _ = test_finder_utils.split_methods(path)
Dsuite_plan_finder.py112 path, _ = test_finder_utils.split_methods(suite_path)
Dtest_finder_utils.py177 def split_methods(user_input): function