Home
last modified time | relevance | path

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

/external/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/
Dminimal-mqtt-client-multi.c19 struct test_item { struct
109 connect_client(struct lws_context *context, struct test_item *item) in connect_client()
147 struct test_item *item = lws_container_of(sul, struct test_item, sul); in start_conn()
190 struct test_item *item = (struct test_item *)lws_get_opaque_user_data(wsi); in callback_mqtt()
/external/python/cpython3/Lib/unittest/
Dcase.py115 def decorator(test_item): argument
116 if not isinstance(test_item, type):
117 @functools.wraps(test_item)
120 test_item = skip_wrapper
122 test_item.__unittest_skip__ = True
123 test_item.__unittest_skip_why__ = reason
124 return test_item
126 test_item = reason
128 return decorator(test_item)
147 def expectedFailure(test_item): argument
[all …]
/external/libchrome/base/containers/
Dmru_cache_unittest.cc48 CachedItem test_item; in TEST() local
86 Cache::iterator test_item = cache.Get(kItem1Key); in TEST() local
87 ASSERT_TRUE(test_item != cache.end()); in TEST()
88 EXPECT_EQ(kItem1Key, test_item->first); in TEST()
89 EXPECT_EQ(item1.value, test_item->second.value); in TEST()
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/
Dcase.py70 def decorator(test_item): argument
73 test_item,
75 test_item,
77 @wraps(test_item)
80 test_item = skip_wrapper
82 test_item.__unittest_skip__ = True
83 test_item.__unittest_skip_why__ = reason
84 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.py18 class test_item(object): class
Dsite_gtest_runner.py40 self._gtest = site_server_job_utils.test_item(*gtest_entry)
/external/pigweed/pw_containers/
Dintrusive_list_test.cc163 for (auto& test_item : list) { in TEST() local
165 EXPECT_EQ(loop_count, test_item.GetNumber()); in TEST()