7 references to CSharpLspService
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (7)
LspServicesTests.cs (7)
22var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(CSharpLspServiceFactory)); 26Assert.True(lspService is CSharpLspService); 35var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(AnyLspService), typeof(CSharpLspServiceFactory), typeof(AnyLspServiceFactory)); 39Assert.True(lspService is CSharpLspService); 61var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(CSharpLspServiceFactory), typeof(DuplicateCSharpLspService), typeof(DuplicateCSharpLspServiceFactory)); 75var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(AlwaysActiveCSharpLspService)); 79Assert.True(lspService is CSharpLspService);