I met a problem of using EclEmma plugin in Eclipse.
It doesn\'t show code coverage when I use annotation @RunWith
passing (PowerMockRunner.class)
a
EclEmma modifies bytecode to detect code coverage as PowerMock does to allow you to run an inaccessible code. Both changes are incompatible
The solution is to use a runner offered by PowerMock which workaround that incompatibility
http://www.notonlyanecmplace.com/make-eclemma-test-coverage-work-with-powermock/