@@ -3326,6 +3326,7 @@ public static IEnumerable<object[]> Sort_SZArray_TestData()
3326
3326
yield return new object [ ] { new string [ ] { "5" , "2" , "9" , "8" , "4" , "3" , "2" , "4" , "6" } , 0 , 9 , new StringComparer ( ) , new string [ ] { "2" , "2" , "3" , "4" , "4" , "5" , "6" , "8" , "9" } } ;
3327
3327
yield return new object [ ] { new string [ ] { "5" , null , "2" , "9" , "8" , "4" , "3" , "2" , "4" , "6" } , 0 , 10 , new StringComparer ( ) , new string [ ] { null , "2" , "2" , "3" , "4" , "4" , "5" , "6" , "8" , "9" } } ;
3328
3328
yield return new object [ ] { new string [ ] { "5" , null , "2" , "9" , "8" , "4" , "3" , "2" , "4" , "6" } , 3 , 4 , new StringComparer ( ) , new string [ ] { "5" , null , "2" , "3" , "4" , "8" , "9" , "2" , "4" , "6" } } ;
3329
+ yield return new object [ ] { new string [ ] { null , null , null , null , null , "foo" , null , null , null , null , null , "bar" , null , null , null , null , null } , 0 , 17 , null , new string [ ] { null , null , null , null , null , null , null , null , null , null , null , null , null , null , null , "bar" , "foo" } } ;
3329
3330
yield return new object [ ] { new int [ ] { 1 , 2 , 3 , 4 } , 0 , 4 , null , new int [ ] { 1 , 2 , 3 , 4 } } ;
3330
3331
yield return new object [ ] { new int [ ] { 4 , 3 , 2 , 1 } , 0 , 4 , null , new int [ ] { 1 , 2 , 3 , 4 } } ;
3331
3332
yield return new object [ ] { new int [ ] { 4 , 3 , 2 , 1 } , 1 , 2 , null , new int [ ] { 4 , 2 , 3 , 1 } } ;
0 commit comments