Home
last modified time | relevance | path

Searched refs:EchoMsg (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc/src/ruby/spec/
Dclient_auth_spec.rb45 rpc :an_rpc, EchoMsg, EchoMsg
46 rpc :a_client_streaming_rpc, stream(EchoMsg), EchoMsg
47 rpc :a_server_streaming_rpc, EchoMsg, stream(EchoMsg)
48 rpc :a_bidi_rpc, stream(EchoMsg), stream(EchoMsg)
63 EchoMsg.new
68 [EchoMsg.new, EchoMsg.new]
74 [EchoMsg.new, EchoMsg.new]
110 @stub.an_rpc(EchoMsg.new)
114 @stub.a_client_streaming_rpc([EchoMsg.new, EchoMsg.new])
118 responses = @stub.a_server_streaming_rpc(EchoMsg.new)
[all …]
Dgoogle_rpc_status_utils_spec.rb121 rpc :an_rpc, EchoMsg, EchoMsg
186 stub.an_rpc(EchoMsg.new)
198 op = stub.an_rpc(EchoMsg.new, return_op: true)
220 rpc :an_rpc, EchoMsg, EchoMsg
259 stub.an_rpc(EchoMsg.new)
271 op = stub.an_rpc(EchoMsg.new, return_op: true)
Dchannel_connection_spec.rb41 req = EchoMsg.new
42 expect(stub.an_rpc(req)).to be_a(EchoMsg)
47 expect(stub.an_rpc(req)).to be_a(EchoMsg)
/external/grpc-grpc/src/ruby/spec/generic/
Drpc_server_spec.rb38 rpc :an_rpc, EchoMsg, EchoMsg
44 rpc :an_rpc, EchoMsg, EchoMsg
63 rpc :an_rpc, EchoMsg, EchoMsg
84 rpc :an_rpc, EchoMsg, EchoMsg
112 rpc :an_rpc, EchoMsg, EchoMsg
113 rpc :a_client_streaming_rpc, stream(EchoMsg), EchoMsg
114 rpc :a_server_streaming_rpc, EchoMsg, stream(EchoMsg)
115 rpc :a_bidi_rpc, stream(EchoMsg), stream(EchoMsg)
129 EchoMsg.new
135 [EchoMsg.new, EchoMsg.new]
[all …]
Dclient_interceptors_spec.rb19 let(:request) { EchoMsg.new }
36 expect(stub.an_rpc(request)).to be_a(EchoMsg)
49 expect(stub.an_rpc(request)).to be_a(EchoMsg)
63 requests = [EchoMsg.new, EchoMsg.new]
64 expect(stub.a_client_streaming_rpc(requests)).to be_a(EchoMsg)
74 requests = [EchoMsg.new, EchoMsg.new]
78 expect(stub.a_client_streaming_rpc(requests)).to be_a(EchoMsg)
90 request = EchoMsg.new
95 expect(r).to be_a(EchoMsg)
106 request = EchoMsg.new
[all …]
Dserver_interceptors_spec.rb18 let(:request) { EchoMsg.new }
41 expect(stub.an_rpc(request)).to be_a(EchoMsg)
61 expect(msg).to be_a(EchoMsg)
68 let(:requests) { [EchoMsg.new, EchoMsg.new] }
76 expect(stub.a_client_streaming_rpc(requests)).to be_a(EchoMsg)
96 expect(msg).to be_a(EchoMsg)
103 let(:request) { EchoMsg.new }
113 expect(r).to be_a(EchoMsg)
131 expect(r).to be_a(EchoMsg)
143 let(:requests) { [EchoMsg.new, EchoMsg.new] }
[all …]
/external/grpc-grpc/src/ruby/spec/support/
Dservices.rb19 class EchoMsg class
25 EchoMsg.new
32 rpc :an_rpc, EchoMsg, EchoMsg
33 rpc :a_client_streaming_rpc, stream(EchoMsg), EchoMsg
34 rpc :a_server_streaming_rpc, EchoMsg, stream(EchoMsg)
35 rpc :a_bidi_rpc, stream(EchoMsg), stream(EchoMsg)
56 EchoMsg.new
61 [EchoMsg.new, EchoMsg.new]
69 [EchoMsg.new, EchoMsg.new]