(t *testing.T)
| 901 | } |
| 902 | |
| 903 | func (s) TestClientBinaryLogFullDuplexRPC(t *testing.T) { |
| 904 | count := 5 |
| 905 | if err := testClientBinaryLog(t, &rpcConfig{count: count, success: true, callType: fullDuplexStreamRPC}); err != nil { |
| 906 | t.Fatal(err) |
| 907 | } |
| 908 | } |
| 909 | |
| 910 | func (s) TestClientBinaryLogFullDuplexRPCError(t *testing.T) { |
| 911 | count := 5 |
nothing calls this directly
no test coverage detected