That ends up with exception.
The best option is to refactor a production code ofc.
If this is not possible, the last resort is to disarm GWT.create checks in your test.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Before | |
public void setUp() throws Exception { | |
GWTMockUtilities.disarm(); | |
} | |
@After | |
public void tearDown() throws Exception { | |
GWTMockUtilities.restore(); | |
} |