3 instantiations of NotNullException
xunit.assert (3)
Sdk\Exceptions\NotNullException.cs (3)
33 new NotNullException( 47 new NotNullException( 60 new NotNullException("Assert.NotNull() Failure: Value is null");
10 references to NotNullException
Microsoft.DotNet.XUnitAssert.Tests (2)
Asserts\NullAssertsTests.cs (2)
43 Assert.IsType<NotNullException>(ex); 54 Assert.IsType<NotNullException>(ex);
xunit.assert (8)
NullAsserts.cs (4)
26 /// <exception cref="NotNullException">Thrown when the object reference is null</exception> 34 throw NotNullException.ForNullValue(); 62 /// <exception cref="NotNullException">Thrown when the value is null</exception> 71 throw NotNullException.ForNullStruct(typeof(T));
Sdk\Exceptions\NotNullException.cs (4)
28 /// Creates a new instance of the <see cref="NotNullException"/> class to be 42 /// Creates a new instance of the <see cref="NotNullException"/> class to be 56 /// Creates a new instance of the <see cref="NotNullException"/> class to be 59 public static NotNullException ForNullValue() =>