(t *testing.T)
| 861 | } |
| 862 | |
| 863 | func (s) TestClientBinaryLogUnaryRPC(t *testing.T) { |
| 864 | if err := testClientBinaryLog(t, &rpcConfig{success: true, callType: unaryRPC}); err != nil { |
| 865 | t.Fatal(err) |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | func (s) TestClientBinaryLogUnaryRPCError(t *testing.T) { |
| 870 | if err := testClientBinaryLog(t, &rpcConfig{success: false, callType: unaryRPC}); err != nil { |
nothing calls this directly
no test coverage detected