(ctx context.Context, r *grpc_health_v1.HealthCheckRequest, opts ...grpc.CallOption)
| 882 | } |
| 883 | |
| 884 | func (g *dummyHealthCheckClient) Check(ctx context.Context, r *grpc_health_v1.HealthCheckRequest, opts ...grpc.CallOption) (*grpc_health_v1.HealthCheckResponse, error) { |
| 885 | if g.code != codes.OK { |
| 886 | return nil, status.Error(g.code, r.GetService()) |
| 887 | } |
| 888 | |
| 889 | return &grpc_health_v1.HealthCheckResponse{Status: g.status}, nil |
| 890 | } |
| 891 | |
| 892 | func (g *dummyHealthCheckClient) Watch(ctx context.Context, r *grpc_health_v1.HealthCheckRequest, opts ...grpc.CallOption) (grpc_health_v1.Health_WatchClient, error) { |
| 893 | return nil, status.Error(codes.Unimplemented, "unimplemented") |
no test coverage detected