Lines Matching refs:thrift_test_client

75     let mut thrift_test_client = {  in run()  localVariable
96 make_thrift_calls(&mut thrift_test_client, &mut second_service_client)? in run()
167 thrift_test_client: &mut BuildThriftTestClient, in make_thrift_calls()
171 thrift_test_client.test_void()?; in make_thrift_calls()
175 thrift_test_client.test_string("thing".to_owned()), in make_thrift_calls()
180 verify_expected_result(thrift_test_client.test_bool(true), true)?; in make_thrift_calls()
183 verify_expected_result(thrift_test_client.test_bool(false), false)?; in make_thrift_calls()
186 verify_expected_result(thrift_test_client.test_byte(42), 42)?; in make_thrift_calls()
189 verify_expected_result(thrift_test_client.test_i32(1_159_348_374), 1_159_348_374)?; in make_thrift_calls()
195 thrift_test_client.test_i64(i64::min_value()), in make_thrift_calls()
201 thrift_test_client.test_double(OrderedFloat::from(42.42)), in make_thrift_calls()
209 verify_expected_result(thrift_test_client.test_typedef(u_snd), u_cmp)?; in make_thrift_calls()
214 verify_expected_result(thrift_test_client.test_enum(Numberz::Two), Numberz::Two)?; in make_thrift_calls()
221 verify_expected_result(thrift_test_client.test_binary(b_snd), b_cmp)?; in make_thrift_calls()
238 verify_expected_result(thrift_test_client.test_struct(x_snd), x_cmp)?; in make_thrift_calls()
280 verify_expected_result(thrift_test_client.test_nest(x_snd), x_cmp)?; in make_thrift_calls()
306 verify_expected_result(thrift_test_client.test_list(v_snd), v_cmp)?; in make_thrift_calls()
321 verify_expected_result(thrift_test_client.test_set(s_snd), s_cmp)?; in make_thrift_calls()
336 verify_expected_result(thrift_test_client.test_map(m_snd), m_cmp)?; in make_thrift_calls()
351 verify_expected_result(thrift_test_client.test_string_map(m_snd), m_rcv)?; in make_thrift_calls()
372 verify_expected_result(thrift_test_client.test_map_map(42), m_cmp)?; in make_thrift_calls()
389 thrift_test_client.test_multi(1, -123_948, -19_234_123_981, m_snd, Numberz::Eight, 81), in make_thrift_calls()
451 verify_expected_result(thrift_test_client.test_insanity(insanity), s_cmp)?; in make_thrift_calls()
456 let r = thrift_test_client.test_exception("Xception".to_owned()); in make_thrift_calls()
477 let r = thrift_test_client.test_exception("TException".to_owned()); in make_thrift_calls()
489 let r = thrift_test_client.test_exception("foo".to_owned()); in make_thrift_calls()
499 thrift_test_client.test_multi_exception("Xception".to_owned(), "ignored".to_owned()); in make_thrift_calls()
521 thrift_test_client.test_multi_exception("Xception2".to_owned(), "ignored".to_owned()); in make_thrift_calls()
552 let r = thrift_test_client.test_multi_exception("haha".to_owned(), "RETURNED".to_owned()); in make_thrift_calls()
573 thrift_test_client.test_oneway(1)?; in make_thrift_calls()
578 thrift_test_client.test_void() in make_thrift_calls()