mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 09:35:37 -05:00
Add plumbing and simple notebookService tests (#10349)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { TestQueryManagementService } from 'sql/workbench/services/query/test/common/testQueryManagementService';
|
||||
import { Event, Emitter } from 'vs/base/common/event';
|
||||
|
||||
export class NBTestQueryManagementService extends TestQueryManagementService {
|
||||
readonly _onHandlerAdded = new Emitter<string>();
|
||||
onHandlerAdded: Event<string> = this._onHandlerAdded.event;
|
||||
|
||||
getRegisteredProviders(): string[] {
|
||||
return ['sql'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user