startServer starts a gRPC server exposing the provided TestService implementation. Callers should defer a call to te.tearDown to clean up
(ts testgrpc.TestServiceServer)
| 708 | // startServer starts a gRPC server exposing the provided TestService |
| 709 | // implementation. Callers should defer a call to te.tearDown to clean up |
| 710 | func (te *test) startServer(ts testgrpc.TestServiceServer) { |
| 711 | te.t.Helper() |
| 712 | te.listenAndServe(ts, net.Listen) |
| 713 | } |
| 714 | |
| 715 | // startServers starts 'num' gRPC servers exposing the provided TestService. |
| 716 | func (te *test) startServers(ts testgrpc.TestServiceServer, num int) { |
no test coverage detected