As far as I know, it is not supported.
To respond to your comment:
If you use pure JUnit tests (and not GWTTestcases), you do not use GIN, you use Guice, and in Guice you can override modules. If you want to reuse GIN modules, wrap them with the GinModuleAdapter
. So you can do something like this:
static class MyGinModule extends GinModule { ... } static class MyGuiceModule extends AbstractModule { ... }
Luismahou
source share