public void WithLoop_AllFound() { for (int i = 0; i < 10; i++) { MethodsUnderTest.ContainsValue_WithLoop("name_100"); } }
public void WithLoop_100PercentNotFound() { for (int i = 0; i < 10; i++) { MethodsUnderTest.ContainsValue_WithLoop("not_existing"); } }
public void WithLoop_50PercentNotFound() { for (int i = 0; i < 10; i++) { if (i % 2 == 0) { MethodsUnderTest.ContainsValue_WithLoop("not_existing"); } else { MethodsUnderTest.ContainsValue_WithLoop("name_100"); } } }