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)]
With MSTest, you can't do this.
You already know the solution to this problem: assert the message of an exception in a catch block.