Is there an equivalent to NUnit's ExpectedException or Assert.Throws<> in jUnit?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
junit4:
junit3:
|
|||||||||||
|
|
You might also consider taking a look at the ExpectedException class which provides richer exception matching. https://github.com/junit-team/junit/wiki/Exception-testing Not only you can match the exception class but also you can apply custom matchers to its message. |
||||
|
|
|
If you are using Groovy for your junit tests you can use shouldFail. Here is an example using junit3 style:
|
||||
|
|
|
If you need to test many exception cases for a specific type of test, it's useful to write a generic method:
Then, you can write one test per line, improving clarity and conciseness:
|
|||||||
|