(t *testing.T)
| 927 | } |
| 928 | |
| 929 | func (s) TestServerStatsUnaryRPCError(t *testing.T) { |
| 930 | testServerStats(t, &testConfig{compress: ""}, &rpcConfig{success: false, callType: unaryRPC}, []func(t *testing.T, d *gotData, e *expectedData){ |
| 931 | checkInHeader, |
| 932 | checkBegin, |
| 933 | checkInPayload, |
| 934 | checkOutHeader, |
| 935 | checkOutTrailer, |
| 936 | checkEnd, |
| 937 | }) |
| 938 | } |
| 939 | |
| 940 | func (s) TestServerStatsClientStreamRPC(t *testing.T) { |
| 941 | count := 5 |
nothing calls this directly
no test coverage detected