Skip to content

Commit f2ddf6e

Browse files
Remove unused test type
1 parent 0a67fab commit f2ddf6e

File tree

3 files changed

+2
-64
lines changed

3 files changed

+2
-64
lines changed

src/EditorFeatures/Test/CodeFixes/CodeFixServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ void M()
10861086
: root.DescendantNodes().OfType<CodeAnalysis.CSharp.Syntax.InvocationExpressionSyntax>().First().Span;
10871087

10881088
await diagnosticIncrementalAnalyzer.GetDiagnosticsForIdsAsync(
1089-
sourceDocument.Project.Solution, sourceDocument.Project.Id, sourceDocument.Id, diagnosticIds: null, shouldIncludeAnalyzer: null, getDocuments: null,
1089+
sourceDocument.Project.Solution, sourceDocument.Project.Id, sourceDocument.Id, diagnosticIds: null, shouldIncludeAnalyzer: null,
10901090
includeLocalDocumentDiagnostics: true, includeNonLocalDocumentDiagnostics: true, CancellationToken.None);
10911091
// await diagnosticIncrementalAnalyzer.GetTestAccessor().TextDocumentOpenAsync(sourceDocument);
10921092

src/EditorFeatures/Test/Diagnostics/DiagnosticAnalyzerServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public async Task TestHasSuccessfullyLoadedBeingFalse()
6868
var globalOptions = exportProvider.GetExportedValue<IGlobalOptionService>();
6969

7070
var diagnostics = await analyzer.GetDiagnosticsForIdsAsync(
71-
workspace.CurrentSolution, projectId: workspace.CurrentSolution.ProjectIds.Single(), documentId: null, diagnosticIds: null, shouldIncludeAnalyzer: null, getDocuments: null,
71+
workspace.CurrentSolution, projectId: workspace.CurrentSolution.ProjectIds.Single(), documentId: null, diagnosticIds: null, shouldIncludeAnalyzer: null,
7272
includeLocalDocumentDiagnostics: true, includeNonLocalDocumentDiagnostics: false, CancellationToken.None);
7373
Assert.NotEmpty(diagnostics);
7474
}

src/EditorFeatures/TestUtilities/Diagnostics/MockDiagnosticAnalyzerService.cs

Lines changed: 0 additions & 62 deletions
This file was deleted.

0 commit comments

Comments
 (0)