Null and Empty
Last updated
var target = "Homer";
target.ShouldBeEmpty();target
should be empty but was
"Homer"string? target = null;
target.ShouldNotBeNull();target
should not be null but wasvar target = "";
target.ShouldNotBeNullOrEmpty();target ("")
should not be null or emptyvar target = "";
target.ShouldNotBeNullOrEmpty();target
should not be empty but was