99using Microsoft . AspNetCore . Razor . Test . Common . LanguageServer ;
1010using Xunit ;
1111using Xunit . Abstractions ;
12+ using WorkItem = Microsoft . AspNetCore . Razor . Test . Common . WorkItemAttribute ;
1213
1314namespace Microsoft . CodeAnalysis . Razor . Completion ;
1415
@@ -32,7 +33,7 @@ public BlazorDataAttributeCompletionItemProviderTest(ITestOutputHelper testOutpu
3233 }
3334
3435 [ Fact ]
35- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
36+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
3637 public void GetCompletionItems_OnFormElement_ReturnsDataEnhance ( )
3738 {
3839 // Arrange
@@ -51,7 +52,7 @@ public void GetCompletionItems_OnFormElement_ReturnsDataEnhance()
5152 }
5253
5354 [ Fact ]
54- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
55+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
5556 public void GetCompletionItems_OnAnchorElement_ReturnsDataEnhanceNav ( )
5657 {
5758 // Arrange
@@ -70,7 +71,7 @@ public void GetCompletionItems_OnAnchorElement_ReturnsDataEnhanceNav()
7071 }
7172
7273 [ Fact ]
73- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
74+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
7475 public void GetCompletionItems_OnDivElement_ReturnsDataPermanent ( )
7576 {
7677 // Arrange
@@ -89,7 +90,7 @@ public void GetCompletionItems_OnDivElement_ReturnsDataPermanent()
8990 }
9091
9192 [ Fact ]
92- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
93+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
9394 public void GetCompletionItems_OnNonFormElement_DoesNotReturnDataEnhance ( )
9495 {
9596 // Arrange
@@ -105,7 +106,7 @@ public void GetCompletionItems_OnNonFormElement_DoesNotReturnDataEnhance()
105106 }
106107
107108 [ Fact ]
108- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
109+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
109110 public void GetCompletionItems_OnDivElement_ReturnsDataEnhanceNav ( )
110111 {
111112 // Arrange - data-enhance-nav can go on any element, not just anchors
@@ -121,7 +122,7 @@ public void GetCompletionItems_OnDivElement_ReturnsDataEnhanceNav()
121122 }
122123
123124 [ Fact ]
124- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
125+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
125126 public void GetCompletionItems_OnNonComponentFile_ReturnsEmpty ( )
126127 {
127128 // Arrange - need to test with non-component file, which requires different setup
@@ -147,7 +148,7 @@ public void GetCompletionItems_OnNonComponentFile_ReturnsEmpty()
147148 }
148149
149150 [ Fact ]
150- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
151+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
151152 public void GetCompletionItems_OnDirectiveAttribute_ReturnsEmpty ( )
152153 {
153154 // Arrange
@@ -162,7 +163,7 @@ public void GetCompletionItems_OnDirectiveAttribute_ReturnsEmpty()
162163 }
163164
164165 [ Fact ]
165- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
166+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
166167 public void GetCompletionItems_ExistingDataEnhanceAttribute_DoesNotDuplicateOnDifferentAttribute ( )
167168 {
168169 // Arrange
@@ -179,7 +180,7 @@ public void GetCompletionItems_ExistingDataEnhanceAttribute_DoesNotDuplicateOnDi
179180 }
180181
181182 [ Fact ]
182- [ Roslyn . Test . Utilities . WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
183+ [ WorkItem ( "https://github.com/dotnet/razor/issues/9378" ) ]
183184 public void GetCompletionItems_WithSnippetsDisabled_ReturnsPlainText ( )
184185 {
185186 // Arrange
0 commit comments