HomeSort by relevance Sort by last modified time
    Searched refs:EchoMsg (Results 1 - 7 of 7) sorted by null

  /external/grpc-grpc/src/ruby/spec/
client_auth_spec.rb 45 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
    [all...]
channel_connection_spec.rb 41 req = EchoMsg.new
42 expect(stub.an_rpc(req)).to be_a(EchoMsg)
47 expect(stub.an_rpc(req)).to be_a(EchoMsg)
google_rpc_status_utils_spec.rb 121 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)
  /external/grpc-grpc/src/ruby/spec/support/
services.rb 19 class EchoMsg
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)
    [all...]
  /external/grpc-grpc/src/ruby/spec/generic/
client_interceptors_spec.rb 19 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.ne
    [all...]
server_interceptors_spec.rb 18 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)
    [all...]
rpc_server_spec.rb 38 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
    [all...]

Completed in 175 milliseconds