In Issue #55 there was Inspection introduced an Inspection that shows up, if there is an object annoted with @Injectmocks explizitly constructed with a default constructor. IE in the following case.
@InjectMocks
private Collection<String> collection = new ArrayList();
However normally i want to test my given class as an implementation of an interface. So in the above example I want to test ArrayList as a Collection and not as an ArrayList..
So my request is: The warning should not be shown for interfaces.