| 227 | } |
| 228 | |
| 229 | type fakePeer struct { |
| 230 | hits int |
| 231 | fail bool |
| 232 | } |
| 233 | |
| 234 | func (p *fakePeer) Get(_ context.Context, in *pb.GetRequest, out *pb.GetResponse) error { |
| 235 | p.hits++ |
nothing calls this directly
no outgoing calls
no test coverage detected