You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The applications that serve gRPC can be tested with Stove. We need a client from the testing point of view to achieve that.
A simple client would be when we want to invoke an action on a gRPC server.
protoc generated
val channel =ManagedChannelBuilder
.forAddress("localhost", 50051)
.usePlaintext()
.build()
val stub =GreeterServiceGrpcKt.GreeterServiceCoroutineStub(channel)
val response = stub.sayHello(helloRequest { name ="World" })
Note: Wire generation might provide more flexibility over typed client usage.
The applications that serve gRPC can be tested with Stove. We need a client from the testing point of view to achieve that.
A simple client would be when we want to invoke an action on a gRPC server.
protoc generated
Note: Wire generation might provide more flexibility over typed client usage.
Stove, dsl idea:
The text was updated successfully, but these errors were encountered: