Skip to content
Advertisement

Using mockito to test methods which throw uncaught custom exceptions

How do I write a Mockito-based JUnit method to test this method adduser()? I tried writing one, but it’s failing with an error message saying exception is not handled. The error is displayed for:

JavaScript

Assume addUser() method in business class never catches any exception and rethrowing is not done.

JavaScript

TEST CASE METHOD :

Here in the test class I am mocking the service layer class with @Mock attribute and injecting it.

JavaScript

Please tell me how to handle the exception scenario in the test case.

Advertisement

Answer

Declare the exception in the test method.

JavaScript
Advertisement