u-RPC (Python API)
1.0.1
The u-RPC Remote Procedure Call framework
|
Functions | |
def | _urpc_test_func_1 (x, y) |
u-RPC integer arguments test function. More... | |
def | _urpc_test_func_2 (buf) |
u-RPC variable length data test function. More... | |
def | _urpc_test_func_3 (test_case, string) |
u-RPC string type data test function. More... | |
def | _urpc_test_func_4 () |
u-RPC zero arguments and multiple return value test function. More... | |
def | _urpc_test_func_5 (arg_types, args) |
u-RPC variable signature test function. More... | |
def | set_up_test_functions (test_case, callee) |
Add test functions to callee endpoint. More... | |
|
private |
u-RPC integer arguments test function.
x | uint8_t integer |
y | uint8_t integer |
|
private |
u-RPC variable length data test function.
buf | A byte string buffer |
|
private |
u-RPC string type data test function.
test_case | TestCase instance |
string | A string |
|
private |
u-RPC zero arguments and multiple return value test function.
|
private |
u-RPC variable signature test function.
arg_types | Types of u-RPC arguments |
args | u-RPC arguments |
def urpc_test.callee.set_up_test_functions | ( | test_case, | |
callee | |||
) |
Add test functions to callee endpoint.
test_case | Test case |
callee | Callee u-RPC endpoint |