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