@RunWith(PowerMockRunner.class) is not working with Eclemma and it is showing 0% coverage for the classes annotated with @RunWith(PowerMockRunner.class) If I replace @RunWith(PowerMockRunner.class) with @RunWith(MockitoJunitRunner.class) the code coverage is showing correctly. If I replace @RunWith(PowerMockRunner.class) with @RunWith(MockitoJunitRunner.class) will it impact on existing test cases. If this approach does not work then let me know an alternate option for @RunWith(PowerMockRunner.class)
Tried to get solution for @RunWith(PowerMockRunner.class) but no luck