Jeff said:
BTW, wondering whether you felt it would be worthwhile adding overloads
that could handle two exceptions at once, specifically for validating both
outer/inner exception type at the same type.
var outerException = Assert.Throws<OuterException, InnerException>(()
=> ...
);
instead of:
var outerException = Assert.Throws<OuterException>(() => ... );
Assert.IsInstanceOftype<InnerException>(ex.InnerException);
Original issue reported on code.google.com by Yann.Tre...@gmail.com on 28 Apr 2009 at 11:33
Original issue reported on code.google.com by
Yann.Tre...@gmail.com
on 28 Apr 2009 at 11:33