Searched refs:testI64 (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/ |
D | client.cpp | 64 zassert_equal(0, context.client->testI64(0), ""); in ZTEST() 65 zassert_equal(-1, context.client->testI64(-1), ""); in ZTEST() 66 zassert_equal(7000000000000000123LL, context.client->testI64(7000000000000000123LL), ""); in ZTEST() 67 zassert_equal(-7000000000000000123LL, context.client->testI64(-7000000000000000123LL), ""); in ZTEST() 68 zassert_equal(INT64_MAX, context.client->testI64(INT64_MAX), ""); in ZTEST() 69 zassert_equal(INT64_MIN, context.client->testI64(INT64_MIN), ""); in ZTEST()
|
D | server.hpp | 58 int64_t testI64(const int64_t thing) override in testI64() function in TestHandler
|