// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #nullable disable using Microsoft.SqlTools.Extensibility; using Microsoft.SqlTools.ServiceLayer.Connection; using Microsoft.SqlTools.ServiceLayer.ObjectExplorer; using Microsoft.SqlTools.SqlCore.ObjectExplorer.Nodes; using Microsoft.SqlTools.SqlCore.ObjectExplorer.SmoModel; namespace Microsoft.SqlTools.ServiceLayer.UnitTests.ObjectExplorer { // Base class providing common test functionality for OE tests public abstract class ObjectExplorerTestBase : ServiceTestBase { protected override RegisteredServiceProvider CreateServiceProviderWithMinServices() { return CreateProvider() .RegisterSingleService(new ConnectionService()) .RegisterSingleService(new ObjectExplorerService()); } protected ObjectExplorerService CreateOEService(ConnectionService connService) { CreateProvider() .RegisterSingleService(connService) .RegisterSingleService(new ObjectExplorerService()) .RegisterSingleService(new ServerChildFactory()); // Create the service using the service provider, which will initialize dependencies return ServiceProvider.GetService(); } } }