Home
last modified time | relevance | path

Searched refs:test_item (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/unittest/
Dcase.py91 def decorator(test_item): argument
92 if not isinstance(test_item, type):
93 @functools.wraps(test_item)
96 test_item = skip_wrapper
98 test_item.__unittest_skip__ = True
99 test_item.__unittest_skip_why__ = reason
100 return test_item
119 def expectedFailure(test_item): argument
120 test_item.__unittest_expecting_failure__ = True
121 return test_item
/external/python/cpython2/Lib/unittest/
Dcase.py58 def decorator(test_item): argument
59 if not isinstance(test_item, (type, types.ClassType)):
60 @functools.wraps(test_item)
63 test_item = skip_wrapper
65 test_item.__unittest_skip__ = True
66 test_item.__unittest_skip_why__ = reason
67 return test_item
/external/autotest/server/
Dsite_server_job_utils.py17 class test_item(object): class
Dsite_gtest_runner.py40 self._gtest = site_server_job_utils.test_item(*gtest_entry)