In my test project, I want to run several async methods in a loop, Test() below.
When I run the following TestLoop() method, the method Test() is only run once with no errors.
How do I get the loop to continue through all 10 iterations??
[TestMethod]
public async Task TestLoop()
{
int intTotalTests = 10;
for (int i = 0; i <= intTotalTests; i++)
{
await myTest();
}
}