OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:test_item
(Results
1 - 5
of
5
) sorted by null
/external/autotest/server/
site_server_job_utils.py
7
test_item
: extends the basic test tuple to add include/exclude attributes and
17
class
test_item
(object):
class in inherits:object
30
"""Creates an instance of
test_item
.
site_gtest_runner.py
35
site_server_job_utils.
test_item
class.
40
self._gtest = site_server_job_utils.
test_item
(*gtest_entry)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
case.py
57
def decorator(
test_item
):
58
if not (isinstance(
test_item
, type) and issubclass(
test_item
, TestCase)):
59
@functools.wraps(
test_item
)
62
test_item
= skip_wrapper
64
test_item
.__unittest_skip__ = True
65
test_item
.__unittest_skip_why__ = reason
66
return
test_item
[
all
...]
/external/python/cpython3/Lib/unittest/
case.py
91
def decorator(
test_item
):
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
):
120
test_item
.__unittest_expecting_failure__ = True
121
return
test_item
[
all
...]
/external/python/cpython2/Lib/unittest/
case.py
58
def decorator(
test_item
):
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
[
all
...]
Completed in 471 milliseconds