I\'m currently studying the Mockito framework and I\'ve created several test cases using Mockito. But then I read that instead of invoking mock(SomeClass.class) I c
I'm not sure, but try to create new instance of ReportServiceImpl manually (as you did in working example):
ReportServiceImpl
@InjectMocks private ReportServiceImpl service = new ReportServiceImpl();