@@ -154,6 +154,7 @@ private void AssertFoldingReferenceArrays(
154
154
Assert . Equal ( expected . Length , actual . Length ) ;
155
155
}
156
156
157
+ [ Trait ( "Category" , "Folding" ) ]
157
158
[ Fact ]
158
159
public void LaguageServiceFindsFoldablRegionsWithLF ( ) {
159
160
// Remove and CR characters
@@ -164,6 +165,7 @@ public void LaguageServiceFindsFoldablRegionsWithLF() {
164
165
AssertFoldingReferenceArrays ( expectedAllInOneScriptFolds , result ) ;
165
166
}
166
167
168
+ [ Trait ( "Category" , "Folding" ) ]
167
169
[ Fact ]
168
170
public void LaguageServiceFindsFoldablRegionsWithCRLF ( ) {
169
171
// The Foldable regions should be the same regardless of line ending type
@@ -178,6 +180,7 @@ public void LaguageServiceFindsFoldablRegionsWithCRLF() {
178
180
AssertFoldingReferenceArrays ( expectedAllInOneScriptFolds , result ) ;
179
181
}
180
182
183
+ [ Trait ( "Category" , "Folding" ) ]
181
184
[ Fact ]
182
185
public void LaguageServiceFindsFoldablRegionsWithoutLastLine ( ) {
183
186
FoldingReference [ ] result = GetRegions ( allInOneScript , false ) ;
@@ -191,6 +194,7 @@ public void LaguageServiceFindsFoldablRegionsWithoutLastLine() {
191
194
AssertFoldingReferenceArrays ( expectedFolds , result ) ;
192
195
}
193
196
197
+ [ Trait ( "Category" , "Folding" ) ]
194
198
[ Fact ]
195
199
public void LaguageServiceFindsFoldablRegionsWithMismatchedRegions ( ) {
196
200
string testString =
@@ -210,6 +214,7 @@ public void LaguageServiceFindsFoldablRegionsWithMismatchedRegions() {
210
214
AssertFoldingReferenceArrays ( expectedFolds , result ) ;
211
215
}
212
216
217
+ [ Trait ( "Category" , "Folding" ) ]
213
218
[ Fact ]
214
219
public void LaguageServiceFindsFoldablRegionsWithDuplicateRegions ( ) {
215
220
string testString =
@@ -230,6 +235,7 @@ public void LaguageServiceFindsFoldablRegionsWithDuplicateRegions() {
230
235
231
236
// This tests that token matching { -> }, @{ -> } and
232
237
// ( -> ), @( -> ) and $( -> ) does not confuse the folder
238
+ [ Trait ( "Category" , "Folding" ) ]
233
239
[ Fact ]
234
240
public void LaguageServiceFindsFoldablRegionsWithSameEndToken ( ) {
235
241
string testString =
0 commit comments