I have a very simple test case that is using Mockito and Spring Test framework. When I do
when(pcUserService.read(\"1\")).thenReturn(pcUser);
I had the same issue, the method that I was trying to mock it was a final method. I removed the modifier and it worked fine.