(t *testing.T)
| 873 | } |
| 874 | |
| 875 | func (s) TestClientBinaryLogClientStreamRPC(t *testing.T) { |
| 876 | count := 5 |
| 877 | if err := testClientBinaryLog(t, &rpcConfig{count: count, success: true, callType: clientStreamRPC}); err != nil { |
| 878 | t.Fatal(err) |
| 879 | } |
| 880 | } |
| 881 | |
| 882 | func (s) TestClientBinaryLogClientStreamRPCError(t *testing.T) { |
| 883 | count := 1 |
nothing calls this directly
no test coverage detected