12 references to GetManager
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
LanguageServer\AbstractLanguageServerProtocolTests.cs (1)
688
internal ImmutableArray<SourceText> GetTrackedTexts() =>
GetManager
().GetTrackedLspText().Values.ToImmutableArray();
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (11)
DocumentChanges\DocumentChangesTests.LinkedDocuments.cs (1)
104
var (_, _, lspDocument) = await testLspServer.
GetManager
().GetLspDocumentInfoAsync(new TextDocumentIdentifier { Uri = uri }, CancellationToken.None).ConfigureAwait(false);
Miscellaneous\LspMiscellaneousFilesWorkspaceTests.cs (3)
150
var (miscWorkspace, _, miscDocument) = await testLspServer.
GetManager
().GetLspDocumentInfoAsync(new LSP.TextDocumentIdentifier { Uri = looseFileUri }, CancellationToken.None);
207
var (lspWorkspace, _, _) = await testLspServer.
GetManager
().GetLspDocumentInfoAsync(new LSP.TextDocumentIdentifier { Uri = fileUri }, CancellationToken.None);
213
var (lspWorkspace, _, _) = await testLspServer.
GetManager
().GetLspDocumentInfoAsync(new LSP.TextDocumentIdentifier { Uri = fileUri }, CancellationToken.None).ConfigureAwait(false);
Ordering\RequestOrderingTests.cs (1)
263
var (_, solution) = await testLspServer.
GetManager
().GetLspSolutionInfoAsync(CancellationToken.None).ConfigureAwait(false);
SpellCheck\SpellCheckTests.cs (2)
175
var (_, lspSolution) = await testLspServer.
GetManager
().GetLspSolutionInfoAsync(CancellationToken.None).ConfigureAwait(false);
471
var (_, lspSolution) = await testLspServer.
GetManager
().GetLspSolutionInfoAsync(CancellationToken.None).ConfigureAwait(false);
Workspaces\LspWorkspaceManagerTests.cs (4)
438
Assert.NotEqual(testLspServerOne.
GetManager
(), testLspServerTwo.
GetManager
());
502
var (workspace, _, document) = await testLspServer.
GetManager
().GetLspDocumentInfoAsync(CreateTextDocumentIdentifier(uri), CancellationToken.None).ConfigureAwait(false);
508
return testLspServer.
GetManager
().GetLspSolutionInfoAsync(CancellationToken.None);