Skip to content
Advertisement

JUnitParams with Mockito

This could be a XY problem but I want to ask:

I am using JUnitParams to be able to run my test method 10 times with different objects. The problem is that the injections don’t work (@Mock and @InjectMocks). I can use

JavaScript

to mock the PersonService in the @Test method. But how do mock the “main” object that is annotated with @InjectMock? Maybe it is not possible and JUnitParams was only created for simple test cases that they exemplify with on their site.

If I can’t use JUnitParams, what can I do instead? I have tried

JavaScript

but that doesn’t work either.. I think..

What I have:

JavaScript

Advertisement

Answer

You cannot have two different runners simultaneously, but you can setup Mockito with a Rule. Just add the following to your test class while keeping the JUnitParamsRunner:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement