Home
last modified time | relevance | path

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

/external/lldb/test/unittest2/
Dcase.py63 def decorator(test_item): argument
64 if not (isinstance(test_item, type) and issubclass(test_item, TestCase)):
65 @wraps(test_item)
68 test_item = skip_wrapper
70 test_item.__unittest_skip__ = True
71 test_item.__unittest_skip_why__ = reason
72 return test_item
/external/autotest/client/common_lib/test_utils/
Dunittest.py146 def decorator(test_item): argument
147 if isinstance(test_item, type) and issubclass(test_item, TestCase):
148 test_item.__unittest_skip__ = True
149 test_item.__unittest_skip_why__ = reason
150 return test_item
151 @functools.wraps(test_item)
/external/autotest/server/
Dsite_server_job.py131 ti = site_server_job_utils.test_item(*test_entry)
Dsite_server_job_utils.py21 class test_item(object): class
Dsite_gtest_runner.py45 self._gtest = site_server_job_utils.test_item(*gtest_entry)
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
Dtesting.py586 def decorator(test_item): argument
590 return test_item