org.mockito.exceptions.misusing.WrongTypeOfReturnValue: LinkedHashSet cannot be returned by getObjectType() code example
Example: org.mockito.exceptions.misusing.WrongTypeOfReturnValue
//use
doReturn(fooBar).when(bar).getFoo()
//instead of
when(bar.getFoo()).thenReturn(fooBar)