(t *testing.T)
| 2037 | } |
| 2038 | |
| 2039 | func TestDialTemporaryNetErr(t *testing.T) { |
| 2040 | testErr := netErrorMock{temporary: true} |
| 2041 | testDialError(t, testErr, testErr) |
| 2042 | } |
| 2043 | |
| 2044 | // Tests custom dial functions |
| 2045 | func TestCustomDial(t *testing.T) { |
nothing calls this directly
no test coverage detected