@@ -265,6 +265,8 @@ public void SepReaderTest_Info_Props()
265
265
266
266
// TODO: Need test of quotes at end
267
267
268
+ #pragma warning disable WHITESPACE
269
+ #pragma warning disable IDE0055
268
270
internal static IEnumerable < object [ ] > ColCountMismatchData =>
269
271
[
270
272
[ """
@@ -337,6 +339,8 @@ Expected 1 column(s) matching header/first row 'C1'
337
339
""" ,
338
340
new [ ] { 2 , 1 , 3 } ] ,
339
341
] ;
342
+ #pragma warning restore IDE0055
343
+ #pragma warning restore WHITESPACE
340
344
341
345
[ DataTestMethod ]
342
346
[ DynamicData ( nameof ( ColCountMismatchData ) ) ]
@@ -410,6 +414,8 @@ public void SepReaderTest_ColumnCountMismatch_IgnoreThrows(
410
414
}
411
415
412
416
417
+ #pragma warning disable WHITESPACE
418
+ #pragma warning disable IDE0055
413
419
internal static IEnumerable < object [ ] > LineNumbersData =>
414
420
[
415
421
[ "C1;C2\n 123;456" , new [ ] { ( 1 , 2 ) , ( 2 , 3 ) } ] ,
@@ -435,6 +441,8 @@ public void SepReaderTest_ColumnCountMismatch_IgnoreThrows(
435
441
[ "\" C1\n \" ;C2\n \" 1\n 2\r 3\" ;\" 4\r \n 56\" \n \" 7\r \r \r \r \r 89\" ;012\n " ,
436
442
new [ ] { ( 1 , 3 ) , ( 3 , 7 ) , ( 7 , 13 ) } ] ,
437
443
] ;
444
+ #pragma warning restore IDE0055
445
+ #pragma warning restore WHITESPACE
438
446
439
447
[ DataTestMethod ]
440
448
[ DynamicData ( nameof ( LineNumbersData ) ) ]
0 commit comments