13 references to TestLspServer
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (13)
LanguageServer\AbstractLanguageServerProtocolTests.cs (13)
303private protected Task<TestLspServer> CreateTestLspServerAsync(string markup, bool mutatingLspWorkspace, LSP.ClientCapabilities clientCapabilities, bool callInitialized = true) 306private protected Task<TestLspServer> CreateTestLspServerAsync(string markup, bool mutatingLspWorkspace, InitializationOptions? initializationOptions = null, TestComposition? composition = null) 309private protected Task<TestLspServer> CreateTestLspServerAsync(string[] markups, bool mutatingLspWorkspace, InitializationOptions? initializationOptions = null, TestComposition? composition = null) 312private protected Task<TestLspServer> CreateVisualBasicTestLspServerAsync(string markup, bool mutatingLspWorkspace, InitializationOptions? initializationOptions = null, TestComposition? composition = null) 315private protected Task<TestLspServer> CreateTestLspServerAsync( 329private async Task<TestLspServer> CreateTestLspServerAsync(EditorTestWorkspace workspace, InitializationOptions initializationOptions, string languageName) 357return await TestLspServer.CreateAsync(workspace, initializationOptions, TestOutputLspLogger); 360private protected async Task<TestLspServer> CreateXmlTestLspServerAsync( 373return await TestLspServer.CreateAsync(workspace, lspOptions, TestOutputLspLogger); 581internal static async Task<TestLspServer> CreateAsync(EditorTestWorkspace testWorkspace, InitializationOptions initializationOptions, AbstractLspLogger logger) 593var server = new TestLspServer(testWorkspace, locations, initializationOptions.ClientCapabilities, languageServer, clientStream, initializationOptions.ClientTarget, initializationOptions.ClientMessageFormatter); 612internal static async Task<TestLspServer> CreateAsync(EditorTestWorkspace testWorkspace, LSP.ClientCapabilities clientCapabilities, RoslynLanguageServer target, Stream clientStream) 615var server = new TestLspServer(testWorkspace, locations, clientCapabilities, target, clientStream);