(t *testing.T)
| 2032 | } |
| 2033 | |
| 2034 | func TestDialNonRetryableNetErr(t *testing.T) { |
| 2035 | testErr := netErrorMock{} |
| 2036 | testDialError(t, testErr, testErr) |
| 2037 | } |
| 2038 | |
| 2039 | func TestDialTemporaryNetErr(t *testing.T) { |
| 2040 | testErr := netErrorMock{temporary: true} |
nothing calls this directly
no test coverage detected