| Author |
Multiple Expected Exceptions in JUNIT
|
Ayan Biswas
Ranch Hand
Joined: Jul 10, 2010
Posts: 69
|
|
|
I know that if I use annotation asthen i am expecting a null pointer exception from the code but what if I expect multiple exceptions ,how can I write it?
|
AyanBiswas
|
 |
Brian Burress
Ranch Hand
Joined: Jun 30, 2003
Posts: 118
|
|
|
I don't like to answer a question with a question, but if doing a unit test I would think you should only expect one exception. Is it possible your test needs to be split up one per exception such that you can confirm under the expected conditions (or unexpected if you will as these are exceptions) that the exception occurs?
|
 |
 |
|
|
subject: Multiple Expected Exceptions in JUNIT
|
|
|