(_command: string, _callback: (...args: any[]) => any, _thisArg?: any)
| 23 | export class MockCommands { |
| 24 | public log: string[] = []; |
| 25 | public registerCommand(_command: string, _callback: (...args: any[]) => any, _thisArg?: any): vscode.Disposable { |
| 26 | return { dispose: noop }; |
| 27 | } |
| 28 | |
| 29 | public registerTextEditorCommand( |
| 30 | _command: string, |
no outgoing calls
no test coverage detected