How do I use Assert (or other Test class?) do 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
|
|||||||||
|
You should be able to adapt this approach to whatever you like -- including specifying what kinds of exceptions to catch. If you only expect certain types, finish the
EDIT: As you can see, there are some framework-specific solutions to your problem. This trick could come in handy later, when/if you're using another framework. ;) One advantage is that you get fine-grained control over which line is supposed to throw the exception. |
|||||||||||||||||||||
|
|
If you're using MSTest, which originally didn't have an
|
|||
|
|
|
My preferred method for implementing this is to write a method called Throws, and use it just like any other Assert method. Unfortunately, .NET doesn't allow you to write a static extension method, so you can't use this method as if it actually belongs to the build in Assert class; just make another called MyAssert or something similar. The class looks like this:
That means that your unit test looks like this:
Which looks and behaves much more like the rest of your unit test syntaxes. |
|||||||||||||
|
|
Be wary of using ExpectedException, as it can lead to several pitfalls as demonstrated here: http://geekswithblogs.net/sdorman/archive/2009/01/17/unit-testing-and-expected-exceptions.aspx And here: http://xunit.codeplex.com/Wiki/View.aspx?title=Comparisons#note1 If you need to test for exceptions, there are less frowned upon ways. You can use the try{act/fail}catch{assert} method, which can be useful for frameworks that don't have direct support for exception tests other than ExpectedException. A better alternative is to use xUnit.NET, which is a very modern, forward looking, and extensible unit testing framework that has learned from all the others mistakes, and improved. One such improvement is Assert.Throws, which provides a much better syntax for asserting exceptions. You can find xUnit.NET at CodePlex: http://www.codeplex.com/xunit |
|||||||||
|
|
It is an attribute on the test method... you don't use Assert. Looks like this:
|
|||
|
|
|
In a project i´m working on we have another solution doing this. First I don´t like the ExpectedExceptionAttribute becuase it does take in consideration which method call that caused the Exception. I do this with a helpermethod instead. Test
HelperMethod
Neat, isn´t it;) |
|||
|
|
|
Check out nUnit Docs for examples about:
|
|||
|
|
|
This is going to depend on what test framework are you using? In MbUnit, for example, you can specify the expected exception with an attribute to ensure that you are getting the exception you really expect.
|
||||
|
|
|
The helper provided by @Richiban above works great except it doesn't handle the situation where an exception is thrown, but not the type expected. The following fixes that:
|
|||
|
|
|
Well i'll pretty much sum up what everyone else here said before...Anyways, here's the code i built according to the good answers :) All is left to do is copy and use...
|
|||
|
|