(i ...grpc.UnaryServerInterceptor)
| 149 | } |
| 150 | } |
| 151 | func WithGRPCUnaryInterceptors(i ...grpc.UnaryServerInterceptor) TestRegistryOption { |
| 152 | return func(_ testing.TB, r *RegistryDefault) { |
| 153 | r.defaultUnaryInterceptors = i |
| 154 | } |
| 155 | } |
| 156 | func WithGRPCStreamInterceptors(i ...grpc.StreamServerInterceptor) TestRegistryOption { |
| 157 | return func(_ testing.TB, r *RegistryDefault) { |
| 158 | r.defaultStreamInterceptors = i |
no outgoing calls