1 instantiation of NotEmptyException
xunit.assert (1)
Sdk\Exceptions\NotEmptyException.cs (1)
31 new NotEmptyException("Assert.NotEmpty() Failure: Collection was empty");
7 references to NotEmptyException
Microsoft.DotNet.XUnitAssert.Tests (2)
AsyncCollectionAssertsTests.cs (1)
1055 Assert.IsType<NotEmptyException>(ex);
CollectionAssertsTests.cs (1)
1618 Assert.IsType<NotEmptyException>(ex);
xunit.assert (5)
AsyncCollectionAsserts.cs (1)
326 /// <exception cref="NotEmptyException">Thrown when the collection is empty</exception>
CollectionAsserts.cs (2)
536 /// <exception cref="NotEmptyException">Thrown when the collection is empty</exception> 545 throw NotEmptyException.ForNonEmptyCollection();
Sdk\Exceptions\NotEmptyException.cs (2)
27 /// Creates a new instance of the <see cref="NotEmptyException"/> class to be thrown 30 public static NotEmptyException ForNonEmptyCollection() =>