Home
last modified time | relevance | path

Searched refs:test_item (Results 1 – 1 of 1) 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