Avoiding unused warning for @Mocked fields in IDEA

731 Views Asked by At

When I have some fields in my Unit test which are @Mocked:

@Mocked
private MyService service;

the IDEA (and I guess Java too) produces unused warning, because it's never being assigned value (since it's just being populated by JMockit) - despite it's being read. I am wondering what is the correct way to avoid this warning. I can do

@SuppressWarnings("unused")
@Mocked
private MyService service;

but that would also suppress warnings when I actually stop using the field (I still want that). I can also do

@Mocked
private MyService service = null;

which fixes the "unused" warning, but I get the "redundant initialization" warning instead. I can avoid that by doing

@SuppressWarnings("RedundantFieldInitialization")
@Mocked
private MyService service = null;

but that seems like too much warning avoidance code to be nice.

So is there any better way to avoid the warning, avoid too verbose code and still benefit from detection of truly unused variables (=those which are never read)?


IDEA has setting in Inspections | Unused declaration to add annotations whose presence will turn off the warning for given field, but it would also disable the warnings for fields which are never read, therefore is not complete solution for me.

0

There are 0 best solutions below