Want to use Assert to verify that an exception has been thrown? For “Visual Studio Team Test” it appears you apply the ExpectedException attribute to the test’s method.
Sample from the documentation here: A Unit Testing Walkthrough with Visual Studio Team Test
1 2 3 4 5 6 7 | [TestMethod] [ExpectedException(typeof(ArgumentException), "A userId of null was inappropriately allowed.")] public void NullUserIdInConstructor() { } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.