Exemplo n.º 1
0
 public void DoesNotEnumerateWhenNotEmpty()
 {
     IEnumerableWithCount<int> source = new ThrowingEnumerable(7);
     // No exception
     Assert.IsTrue(source.Any());
 }