For me, i had to replace my when...statement with a doReturn,
i.e. instead of :-
when(service.getString()).thenReturn("something to return"));
use this:-
import org.mockito.Mockito;
.....
Mockito.doReturn("something to return").when(service).getString();