()
| 71 | } |
| 72 | |
| 73 | get sync(): SyncDelegateHost<{}> { |
| 74 | if (!this._sync) { |
| 75 | this._sync = new SyncDelegateHost<{}>(this); |
| 76 | } |
| 77 | |
| 78 | return this._sync; |
| 79 | } |
| 80 | |
| 81 | clone(): TestHost { |
| 82 | const newHost = new TestHost(); |
no outgoing calls
no test coverage detected