In Junit, I'm currently using annotation to expect an exception in my tests.
Is there a way to analyse this exception ? For example, I expect a CriticalServerException, but I also want to verify the content of the getMessage method ...
Thanks !
|
|
|
If you have JUnit 4.7 or above try ExpectedException There is an example in this question, which is copied below:
|
||||
|
I'm not sure if you should. Using a try-catch block to check the error message is so junit3ish. We have this cool feature now that you can write IMO you should stay for the In general you want to test if the method throws the exception or not, and not what the actual error message looks like. If the error message is really so important you should maybe consider using a subclass of the exception it throws and check it in |
||||
|
|
|||||||||||
|
|
|||
|
|
|
|||
|
|
|
I don't think there is a way of doing it using annotation. You may have to fall back to try-catch way where in the catch block you can verify the message |
|||
|
|
|
Use MethodRule as a common solution, if you have many test cases to test
Then use the Rule to your test class:
|
|||
|
|
|
Use catch-exception:
|
|||
|
|