Closed
Description
If I have a Guid
that I want to assert is empty, I currently have to use:
Assert.That(myId, Is.EqualTo(Guid.Empty));
I think it would be simpler and read easier to be able to say:
Assert.That(myId, Is.Empty);
Unfortunately this currently throws an error stating that NUnit expected myId
to be an IEnumerable
.