mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 01:25:39 -05:00
* Working tests Upto 97.5% coverage * pr feedback * pr feedback * pr feedback and test bug fixes + 1 new test * revert debug change
17 lines
779 B
TypeScript
17 lines
779 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* 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 {
|
|
onHandlerAddedEmitter = new Emitter<string>();
|
|
onHandlerAdded: Event<string> = this.onHandlerAddedEmitter.event;
|
|
|
|
getRegisteredProviders(): string[] {
|
|
return ['sql'];
|
|
}
|
|
}
|