2 instantiations of AllException
Microsoft.DotNet.XUnitAssert.Tests (1)
Sdk\Exceptions\AllExceptionTests.cs (1)
22 var ex = new AllException(6, errors);
xunit.assert (1)
CollectionAsserts.cs (1)
84 throw new AllException(idx, errors.ToArray());
10 references to AllException
Microsoft.DotNet.XUnitAssert.Tests (7)
CollectionAssertsTests.cs (6)
35 var ex = Assert.Throws<AllException>(() => Assert.All(items, x => Assert.Equal(1, x))); 56 var ex = Assert.Throws<AllException>(() => Assert.All(items, x => Assert.Equal(0, x))); 82 var ex = Assert.Throws<AllException>(() => Assert.All(collection, Assert.NotNull));
Sdk\Exceptions\AllExceptionTests.cs (1)
22 var ex = new AllException(6, errors);
xunit.assert (3)
CollectionAsserts.cs (2)
32 /// <exception cref="AllException">Thrown when the collection contains at least one non-matching element</exception> 50 /// <exception cref="AllException">Thrown when the collection contains at least one non-matching element</exception>
Sdk\Exceptions\AllException.cs (1)
29 /// Creates a new instance of the <see cref="AllException"/> class.