@@ -1000,24 +1000,24 @@ class C
1000
1000
[ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1001
1001
public async Task TestNoFix_ExpressionBody_AlreadyWrapped ( )
1002
1002
{
1003
- await VerifyDiagnosticAndNoFixAsync (
1003
+ await VerifyNoDiagnosticAsync (
1004
1004
@"
1005
1005
class C
1006
1006
{
1007
1007
string M(object p)
1008
- [| => ""xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"";|]
1008
+ => ""xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"";
1009
1009
}
1010
1010
" ) ;
1011
1011
}
1012
1012
1013
1013
[ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1014
1014
public async Task TestNoFix_ExpressionBody_AlreadyWrapped2 ( )
1015
1015
{
1016
- await VerifyDiagnosticAndNoFixAsync ( @"
1016
+ await VerifyNoDiagnosticAsync ( @"
1017
1017
class C
1018
1018
{
1019
1019
string M(object p) =>
1020
- [| ""xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"";|]
1020
+ ""xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"";
1021
1021
}
1022
1022
" ) ;
1023
1023
}
@@ -1180,4 +1180,112 @@ void M()
1180
1180
}
1181
1181
" ) ;
1182
1182
}
1183
+
1184
+ [ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1185
+ public async Task TestNoDiagnostic_LongStringLiteral_Argument ( )
1186
+ {
1187
+ await VerifyNoDiagnosticAsync ( """
1188
+ class C
1189
+ {
1190
+ static void M(string x, string y)
1191
+ {
1192
+ C.M(
1193
+ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
1194
+ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
1195
+ }
1196
+ }
1197
+ """ ) ;
1198
+ }
1199
+
1200
+ [ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1201
+ public async Task TestNoDiagnostic_LongStringLiteral_AttributeArgument ( )
1202
+ {
1203
+ await VerifyNoDiagnosticAsync ( """
1204
+ using System;
1205
+
1206
+ class C
1207
+ {
1208
+ [Obsolete(
1209
+ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")]
1210
+ static void M()
1211
+ {
1212
+ }
1213
+ }
1214
+ """ ) ;
1215
+ }
1216
+
1217
+ [ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1218
+ public async Task TestNoDiagnostic_LongStringLiteral_AttributeArgument2 ( )
1219
+ {
1220
+ await VerifyNoDiagnosticAsync ( """
1221
+ using System;
1222
+
1223
+ class C
1224
+ {
1225
+ [My(
1226
+ Value = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")]
1227
+ static void M()
1228
+ {
1229
+ }
1230
+ }
1231
+
1232
+ class MyAttribute : Attribute
1233
+ {
1234
+ public string Value { get; set; }
1235
+ }
1236
+ """ ) ;
1237
+ }
1238
+
1239
+ [ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1240
+ public async Task TestNoDiagnostic_LongVerbatimStringLiteral ( )
1241
+ {
1242
+ await VerifyNoDiagnosticAsync ( """
1243
+ class C
1244
+ {
1245
+ static void M(string x, int y)
1246
+ {
1247
+ C.M(
1248
+ @"
1249
+
1250
+ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
1251
+ 0);
1252
+ }
1253
+ }
1254
+ """ ) ;
1255
+ }
1256
+
1257
+ [ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1258
+ public async Task TestNoDiagnostic_LongInterpolatedString ( )
1259
+ {
1260
+ await VerifyNoDiagnosticAsync ( """
1261
+ class C
1262
+ {
1263
+ static void M(string x, string y)
1264
+ {
1265
+ C.M(
1266
+ $"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
1267
+ $"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
1268
+ }
1269
+ }
1270
+ """ ) ;
1271
+ }
1272
+
1273
+ [ Fact , Trait ( Traits . Analyzer , DiagnosticIdentifiers . LineIsTooLong ) ]
1274
+ public async Task TestNoDiagnostic_LongRawInterpolatedString ( )
1275
+ {
1276
+ await VerifyNoDiagnosticAsync ( """"
1277
+ class C
1278
+ {
1279
+ static void M(string x, int y)
1280
+ {
1281
+ C.M(
1282
+ $"""
1283
+
1284
+ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1285
+ """,
1286
+ 0);
1287
+ }
1288
+ }
1289
+ """" ) ;
1290
+ }
1183
1291
}
0 commit comments