Lines Matching refs:test_method
275 def __init__(self, test_method, testcases, naming_type, original_name=None): argument
294 self._test_method = test_method
298 original_name = test_method.__name__
311 test_method = self._test_method
315 @functools.wraps(test_method)
318 return test_method(self, **testcase_params)
320 return test_method(self, *testcase_params)
322 return test_method(self, testcase_params)
375 if test_method.__doc__:
376 bound_param_test.__doc__ += '\n%s' % (test_method.__doc__,)
377 if inspect.iscoroutinefunction(test_method):
593 for test_method, test_method_id in base_test_params_reprs.items():
597 test_params_reprs.setdefault(test_method, test_method_id)