Using MSTest how can I verify the exact error message coming from a test method? I know [ExpectedException(typeof(ApplicationException), error msg)] doesn\'t co
[ExpectedException(typeof(ApplicationException), error msg)]
MbUnit can also do this:
[Test] [Row(ExpectedExceptionMessage="my message")] void TestBlah(...