| 15 | ) |
| 16 | |
| 17 | type testWriter struct { |
| 18 | mu sync.Mutex |
| 19 | packets []wshrpc.CommandStreamData |
| 20 | } |
| 21 | |
| 22 | func (tw *testWriter) SendData(pkt wshrpc.CommandStreamData) { |
| 23 | tw.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected