Skip to content

Commit d905a7b

Browse files
committed
review feedback
1 parent 5dce7ba commit d905a7b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/DataReaderTest/DataReaderTest.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,10 @@ integrated into a comprehensive development
608608
[ConditionalFact(typeof(DataTestUtility), nameof(DataTestUtility.AreConnStringsSetup))]
609609
public static async Task CanReadSequentialDecreasingChunks()
610610
{
611+
// pattern repeat input allows you to more easily identify if chunks are incorrectly
612+
// related to each other by seeing the start and end of sequential chunks and checking
613+
// if they correctly move to the next char while debugging
614+
// simply repeating a single char can't tell you where in the string it went wrong.
611615
const string baseString = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
612616
StringBuilder inputBuilder = new StringBuilder();
613617
while (inputBuilder.Length < (64 * 1024))

0 commit comments

Comments
 (0)