google / gwtmockito

Better GWT unit testing
https://google.github.io/gwtmockito
Apache License 2.0
157 stars 51 forks source link

GwtMockitoTestRunner breaks Jacoco/EclEmma on abstract classes #48

Closed rpofuk closed 9 years ago

rpofuk commented 9 years ago

I have abstract class implementing some logic I want to cover with tests.

When I test class that extends abstract class coverage is broken for abstract cass when adding @RunWith(GwtMockitoTestRunner.class) to test class.

It works when I test code with other runners i.e. PowerMock...

rpofuk commented 9 years ago

I had final method i class: public final void doSmtng(); which was problem.