(t *testing.T)
| 992 | } |
| 993 | |
| 994 | func (s) TestServerStatsServerStreamRPCError(t *testing.T) { |
| 995 | count := 5 |
| 996 | testServerStats(t, &testConfig{compress: "gzip"}, &rpcConfig{count: count, success: false, callType: serverStreamRPC}, []func(t *testing.T, d *gotData, e *expectedData){ |
| 997 | checkInHeader, |
| 998 | checkBegin, |
| 999 | checkInPayload, |
| 1000 | checkOutHeader, |
| 1001 | checkOutTrailer, |
| 1002 | checkEnd, |
| 1003 | }) |
| 1004 | } |
| 1005 | |
| 1006 | func (s) TestServerStatsFullDuplexRPC(t *testing.T) { |
| 1007 | count := 5 |
nothing calls this directly
no test coverage detected