org.mockito.exceptions.misusing.WrongTypeOfReturnValue String cannot be returned should return int code example
Example: org.mockito.exceptions.misusing.WrongTypeOfReturnValue
//use
doReturn(fooBar).when(bar).getFoo()
//instead of
when(bar.getFoo()).thenReturn(fooBar)