We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92fbe8a commit 382cad4Copy full SHA for 382cad4
projects/client/Unit/src/unit/Fixtures.cs
@@ -439,6 +439,8 @@ protected List<ConnectionInfo> ListConnections()
439
// line: <[email protected]> 58713
440
return lines.Select(s => {
441
var columns = s.Split('\t');
442
+ Debug.Assert(!string.IsNullOrEmpty(columns[0]), "columns[0] is null or empty!");
443
+ Debug.Assert(!string.IsNullOrEmpty(columns[1]), "columns[1] is null or empty!");
444
return new ConnectionInfo(columns[0], Convert.ToUInt32(columns[1]));
445
}).ToList();
446
}
0 commit comments