(params: unknown)
| 66 | async connect(): Promise<void> {} |
| 67 | |
| 68 | async initialize(params: unknown): Promise<{ protocolVersion: number }> { |
| 69 | harness.initializeCalls.push(params); |
| 70 | return { protocolVersion: 1 }; |
| 71 | } |
| 72 | |
| 73 | setNotificationHandler(handler: ((method: string, params: unknown) => void) | null): void { |
| 74 | this.notificationHandler = handler; |