7 references to CSharpLspServiceFactory
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (7)
LspServicesTests.cs (7)
22var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(CSharpLspServiceFactory)); 29Assert.Equal(typeof(CSharpLspServiceFactory).Name, lspServiceFromFactory.FactoryName); 35var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(AnyLspService), typeof(CSharpLspServiceFactory), typeof(AnyLspServiceFactory)); 42Assert.Equal(typeof(CSharpLspServiceFactory).Name, lspServiceFromFactory.FactoryName); 61var composition = base.Composition.AddParts(typeof(CSharpLspService), typeof(CSharpLspServiceFactory), typeof(DuplicateCSharpLspService), typeof(DuplicateCSharpLspServiceFactory)); 124internal class DuplicateCSharpLspServiceFactory() : CSharpLspServiceFactory { } 134internal class DuplicateAnyLspServiceFactory() : CSharpLspServiceFactory { }