(udid: string, version: string, socket: Socket)
| 25 | streamClient?: SubProcess; |
| 26 | |
| 27 | constructor(udid: string, version: string, socket: Socket) { |
| 28 | this.socketClient = socket; |
| 29 | this.udid = udid; |
| 30 | this.tunnelManager = new TunnelManager(udid); |
| 31 | this.wdaStreamClient = new WdaStreamClient(); |
| 32 | this.version = getDeviceVersion(version); |
| 33 | } |
| 34 | |
| 35 | getPorts() { |
| 36 | return [this.controlPort, this.streamPort]; |
nothing calls this directly
no test coverage detected