Hi,
I have encountered a problem with usin gwt-test-utils v0.46 to test app using gwt-bootstrap v2.2.1.0.
There is an NPE in com.googlecode.gwt.test.internal.rewrite.OverlayTypesRewriter(line 111). Through debugging I found out, the problem is when trying to find declaring classes for com.google.gwt.dom.client.Element.removeClassName(String). The problem is that gwt-bootstrap uses GWT 2.4.0 where this method's signature is "removeClassName(Ljava/lang/String;)V" whereas in GWT 2.5.1 it is "removeClassName(Ljava/lang/String;)Z".
Is there any workaround for this? Changing versions of GWT or gwt-bootstrap is not an option, only version I can change is gwt-test-utils.
I'm considering creating a pull request modifying the behavior to not care about return type if void is expected. Is there any chance of releasing gwt-test-utils with this fix for GWT 2.5.1?
Thank you in advance
Tomas Schlosser