I am trying to use the Fluent Assertions ShouldBeNull() extension method to assert that my instance is indeed null.
Result.ShouldBeNull();
Clearly, this throws an exception because I cannot call the extension on a null instance.
System.NullReferenceException
How do I use Fluent Assertions properly to make this assertion?