(t *testing.T)
| 867 | } |
| 868 | |
| 869 | func (s) TestClientBinaryLogUnaryRPCError(t *testing.T) { |
| 870 | if err := testClientBinaryLog(t, &rpcConfig{success: false, callType: unaryRPC}); err != nil { |
| 871 | t.Fatal(err) |
| 872 | } |
| 873 | } |
| 874 | |
| 875 | func (s) TestClientBinaryLogClientStreamRPC(t *testing.T) { |
| 876 | count := 5 |
nothing calls this directly
no test coverage detected