| 11 | ) |
| 12 | |
| 13 | type fakeTransport struct { |
| 14 | dataChan chan wshrpc.CommandStreamData |
| 15 | ackChan chan wshrpc.CommandStreamAckData |
| 16 | } |
| 17 | |
| 18 | func newFakeTransport() *fakeTransport { |
| 19 | return &fakeTransport{ |
nothing calls this directly
no outgoing calls
no test coverage detected