(t *testing.T)
| 915 | } |
| 916 | |
| 917 | func (s) TestClientBinaryLogCancel(t *testing.T) { |
| 918 | count := 5 |
| 919 | if err := testClientBinaryLog(t, &rpcConfig{count: count, success: false, callType: cancelRPC}); err != nil { |
| 920 | t.Fatal(err) |
| 921 | } |
| 922 | } |
| 923 | |
| 924 | func testServerBinaryLog(t *testing.T, c *rpcConfig) error { |
| 925 | defer testSink.clear() |
nothing calls this directly
no test coverage detected