var lines1 = new List<string> { };
var lines2 = new List<string> { };
for (int i = 0; i < 10000; i++)
{
lines1.Add(i.ToString());
lines2.Add(i.ToString());
}
CollectionAssert.AreEquivalent(lines1, lines2);
Verification of 10000 string elements takes 10 seconds. Verification of 100k elements may take more than 30 minutes (cannot wait until it finishes). This behavior takes a place in NUnit 3.10 and not reproducible in 3.9
Verification of 10000 string elements takes 10 seconds. Verification of 100k elements may take more than 30 minutes (cannot wait until it finishes). This behavior takes a place in NUnit 3.10 and not reproducible in 3.9