-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
Milestone
Description
On an MSTest project with huge parameterized test, I see:

Test class looks like this:
[TestClass]
public class TestClass
{
[TestMethod]
[DynamicData(nameof(Data))]
public void Test3(int a, int b)
{
if (b == 10000000)
{
}
}
public static IEnumerable<(int A, int B)> Data
{
get
{
for (int i = 0; i < 10000000; i++)
{
yield return (i, i + 1);
}
}
}
}