5 types derived from TestLspService
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (5)
LspServicesTests.cs (5)
99internal sealed class CSharpLspService() : TestLspService { } 109internal sealed class AnyLspService() : TestLspService { } 119internal sealed class DuplicateCSharpLspService() : TestLspService { } 129internal sealed class DuplicateAnyLspService() : TestLspService { } 139internal sealed class AlwaysActiveCSharpLspService() : TestLspService { }
10 references to TestLspService
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (10)
LspServicesTests.cs (10)
25var lspService = server.GetRequiredLspService<TestLspService>(); 38var lspService = server.GetRequiredLspService<TestLspService>(); 51var lspService = server.GetRequiredLspService<TestLspService>(); 78var lspService = server.GetRequiredLspService<TestLspService>(); 83var lspService2 = server2.GetRequiredLspService<TestLspService>(); 96[ExportStatelessLspService(typeof(TestLspService), ProtocolConstants.RoslynLspLanguagesContract, WellKnownLspServerKinds.CSharpVisualBasicLspServer), Shared] 106[ExportStatelessLspService(typeof(TestLspService), ProtocolConstants.RoslynLspLanguagesContract, WellKnownLspServerKinds.Any), Shared] 116[ExportStatelessLspService(typeof(TestLspService), ProtocolConstants.RoslynLspLanguagesContract, WellKnownLspServerKinds.CSharpVisualBasicLspServer), Shared] 126[ExportStatelessLspService(typeof(TestLspService), ProtocolConstants.RoslynLspLanguagesContract, WellKnownLspServerKinds.Any), Shared] 136[ExportStatelessLspService(typeof(TestLspService), ProtocolConstants.RoslynLspLanguagesContract, WellKnownLspServerKinds.AlwaysActiveVSLspServer), Shared]