Is it possible to use Assert.DoesNotThrow with a particular exception type?
For example how do I verify that a method call is not throwing NullReferenceExceptions specifically but it may throw NotSupportedException which I don't care about. ?
'Assert.DoesNotThrow' it self is not there in the new release of XUnit github.com/xunit/xunit/issues/188. I'm still trying to understand the justification behind this decision.
Assert.DoesNotThrowcomes from NUnit or XUnit, not from FakeItEasy.