()
| 51 | func (bufConn) SetWriteDeadline(time.Time) error { panic("unimplemented") } |
| 52 | |
| 53 | func restoreHooks() func() { |
| 54 | s := sleep |
| 55 | n := now |
| 56 | return func() { |
| 57 | sleep = s |
| 58 | now = n |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | func (s) TestConn(t *testing.T) { |
| 63 | defer restoreHooks()() |
no outgoing calls
no test coverage detected