(t *testing.T)
| 1025 | } |
| 1026 | |
| 1027 | func (s) TestServerStatsFullDuplexRPCError(t *testing.T) { |
| 1028 | count := 5 |
| 1029 | testServerStats(t, &testConfig{compress: "gzip"}, &rpcConfig{count: count, success: false, callType: fullDuplexStreamRPC}, []func(t *testing.T, d *gotData, e *expectedData){ |
| 1030 | checkInHeader, |
| 1031 | checkBegin, |
| 1032 | checkOutHeader, |
| 1033 | checkInPayload, |
| 1034 | checkOutTrailer, |
| 1035 | checkEnd, |
| 1036 | }) |
| 1037 | } |
| 1038 | |
| 1039 | type checkFuncWithCount struct { |
| 1040 | f func(t *testing.T, d *gotData, e *expectedData) |
nothing calls this directly
no test coverage detected