(t *testing.T)
| 915 | } |
| 916 | |
| 917 | func (s) TestServerStatsUnaryRPC(t *testing.T) { |
| 918 | testServerStats(t, &testConfig{compress: ""}, &rpcConfig{success: true, callType: unaryRPC}, []func(t *testing.T, d *gotData, e *expectedData){ |
| 919 | checkInHeader, |
| 920 | checkBegin, |
| 921 | checkInPayload, |
| 922 | checkOutHeader, |
| 923 | checkOutPayload, |
| 924 | checkOutTrailer, |
| 925 | checkEnd, |
| 926 | }) |
| 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){ |
nothing calls this directly
no test coverage detected