| 66 | } |
| 67 | |
| 68 | type fakeGRPCServer struct { |
| 69 | done chan struct{} |
| 70 | registerServiceCh *testutils.Channel |
| 71 | serveCh *testutils.Channel |
| 72 | } |
| 73 | |
| 74 | func (f *fakeGRPCServer) RegisterService(*grpc.ServiceDesc, any) { |
| 75 | f.registerServiceCh.Send(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected