(t *testing.T)
| 2027 | } |
| 2028 | |
| 2029 | func TestDialUnknownError(t *testing.T) { |
| 2030 | testErr := fmt.Errorf("test") |
| 2031 | testDialError(t, testErr, testErr) |
| 2032 | } |
| 2033 | |
| 2034 | func TestDialNonRetryableNetErr(t *testing.T) { |
| 2035 | testErr := netErrorMock{} |
nothing calls this directly
no test coverage detected