Home
last modified time | relevance | path

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

/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/
Dminimal-mqtt-client-multi.c25 struct test_item { struct
118 connect_client(struct lws_context *context, struct test_item *item) in connect_client()
156 struct test_item *item = lws_container_of(sul, struct test_item, sul); in start_conn()
199 struct test_item *item = (struct test_item *)lws_get_opaque_user_data(wsi); in callback_mqtt()
/third_party/python/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 …]