2 writes to innerEnumerator
Microsoft.DotNet.XUnitAssert.Tests (2)
AsyncCollectionAssertsTests.cs (2)
1566 innerEnumerator = enumerable.GetAsyncEnumerator(); 1584 innerEnumerator = null;
5 references to innerEnumerator
Microsoft.DotNet.XUnitAssert.Tests (5)
AsyncCollectionAssertsTests.cs (5)
1570 GuardNotNull("Tried to get Current on a disposed enumerator", innerEnumerator).Current; 1572 public bool IsDisposed => innerEnumerator is null; 1577 GuardNotNull("Tried to call MoveNext() on a disposed enumerator", innerEnumerator).MoveNextAsync(); 1581 if (innerEnumerator is not null) 1582 await innerEnumerator.DisposeAsync();