Null and Empty
ShouldBeNull
var target = "Homer";
target.ShouldBeNull();Exception
target
should be null but was
"Homer"ShouldBeNullOrEmpty
var target = "Homer";
target.ShouldBeNullOrEmpty();Exception
target ("Homer")
should be null or emptyShouldBeEmpty
Exception
ShouldNotBeNull
Exception
ShouldNotBeNullOrEmpty
Exception
ShouldNotBeEmpty
Exception
Last updated