Skip to content

Commit f6f2386

Browse files
Youssef1313Youssef Fahmy
and
Youssef Fahmy
authored
Handle trivia properly in PreferTestCleanupOverDisposeFixer (#4000)
Co-authored-by: Youssef Fahmy <[email protected]>
1 parent b4d8c0a commit f6f2386

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Analyzers/MSTest.Analyzers.CodeFixes/PreferTestCleanupOverDisposeFixer.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public override async Task RegisterCodeFixesAsync(CodeFixContext context)
4949
CodeAction.Create(
5050
CodeFixResources.ReplaceWithTestCleanuFix,
5151
c => ReplaceDisposeWithTestCleanupAsync(context.Document, methodDeclaration, c),
52-
nameof(TestMethodShouldBeValidCodeFixProvider)),
52+
nameof(PreferTestCleanupOverDisposeFixer)),
5353
diagnostic);
5454
}
5555

@@ -83,7 +83,9 @@ private static async Task<Document> ReplaceDisposeWithTestCleanupAsync(Document
8383
else
8484
{
8585
// If no interfaces left, remove the base list entirely
86+
SyntaxTriviaList trailingTrivia = newParent.BaseList?.GetTrailingTrivia() ?? SyntaxTriviaList.Empty;
8687
newParent = newParent.WithBaseList(null);
88+
newParent = newParent.WithIdentifier(newParent.Identifier.WithTrailingTrivia(trailingTrivia));
8789
}
8890

8991
editor.ReplaceNode(parentClass, newParent);

test/UnitTests/MSTest.Analyzers.UnitTests/PreferTestCleanupOverDisposeAnalyzerTests.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ public class MyTestClass : IAsyncDisposable
7171
using Microsoft.VisualStudio.TestTools.UnitTesting;
7272
7373
[TestClass]
74-
public class MyTestClass {
74+
public class MyTestClass
75+
{
7576
[TestCleanup]
7677
public ValueTask TestCleanup()
7778
{

0 commit comments

Comments
 (0)