| 10 | ) |
| 11 | |
| 12 | type mockRpcInterface struct { |
| 13 | dataChan chan wshrpc.CommandStreamData |
| 14 | ackChan chan wshrpc.CommandStreamAckData |
| 15 | } |
| 16 | |
| 17 | func (m *mockRpcInterface) StreamDataCommand(data wshrpc.CommandStreamData, opts *wshrpc.RpcOpts) error { |
| 18 | m.dataChan <- data |
nothing calls this directly
no outgoing calls
no test coverage detected