** Changed in: nunit-3.0 Status: Fix Committed => Fix Released -- Assert.Catch<T> should return T instead of System.Exception https://bugs.launchpad.net/bugs/430100 You received this bug notification because you are a member of NUnit Developers, which is subscribed to NUnit V2.
Status in NUnit Test Framework: Fix Released Status in NUnit V2 Test Framework: Fix Released Bug description: The Assert.Catch<T> should return the generic exception type instead of overly widened System.Exception. So that code below is possible: ArgumentException e = Assert.Catch<ArgumentException>( ()=>...); Assert.That(e.ParamName, ....); _______________________________________________ Mailing list: https://launchpad.net/~nunit-core Post to : nunit-core@lists.launchpad.net Unsubscribe : https://launchpad.net/~nunit-core More help : https://help.launchpad.net/ListHelp