1 instantiation of NotEmptyException
xunit.assert (1)
Sdk\Exceptions\NotEmptyException.cs (1)
29
new
NotEmptyException
("Assert.NotEmpty() Failure: Collection was empty");
7 references to NotEmptyException
Microsoft.DotNet.XUnitAssert.Tests (2)
Asserts\AsyncCollectionAssertsTests.cs (1)
1071
Assert.IsType<
NotEmptyException
>(ex);
Asserts\CollectionAssertsTests.cs (1)
1706
Assert.IsType<
NotEmptyException
>(ex);
xunit.assert (5)
AsyncCollectionAsserts.cs (1)
319
/// <exception cref="
NotEmptyException
">Thrown when the collection is empty</exception>
CollectionAsserts.cs (2)
602
/// <exception cref="
NotEmptyException
">Thrown when the collection is empty</exception>
611
throw
NotEmptyException
.ForNonEmptyCollection();
Sdk\Exceptions\NotEmptyException.cs (2)
25
/// Creates a new instance of the <see cref="
NotEmptyException
"/> class to be thrown
28
public static
NotEmptyException
ForNonEmptyCollection() =>