| 416 | } |
| 417 | |
| 418 | type fakePingerCloser struct { |
| 419 | sync.Mutex |
| 420 | pings []time.Time |
| 421 | code websocket.StatusCode |
| 422 | reason string |
| 423 | closed bool |
| 424 | } |
| 425 | |
| 426 | func (f *fakePingerCloser) Ping(context.Context) error { |
| 427 | f.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected