1 implementation of GetPotentialTestMethodsAsync
Microsoft.CodeAnalysis.Features (1)
Testing\AbstractTestMethodFinder.cs (1)
33public async Task<ImmutableArray<SyntaxNode>> GetPotentialTestMethodsAsync(Document document, TextSpan textSpan, CancellationToken cancellationToken)
3 references to GetPotentialTestMethodsAsync
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (2)
Testing\CSharpTestMethodFinderTests.cs (2)
469var testMethods = await testMethodFinder.GetPotentialTestMethodsAsync(workspace.CurrentSolution.GetRequiredDocument(testDocument.Id), span, CancellationToken.None); 483var testMethods = await testMethodFinder.GetPotentialTestMethodsAsync(workspace.CurrentSolution.GetRequiredDocument(testDocument.Id), span, CancellationToken.None);
Microsoft.CodeAnalysis.LanguageServer (1)
Testing\TestDiscoverer.cs (1)
83var potentialTestMethods = await testMethodFinder.GetPotentialTestMethodsAsync(document, textSpan, cancellationToken);