> Also since ParseId test would require injected ParseId (because of Json), I'm > wondering how I can achieve that.
You can create a small Guice context, with the json configuration, for that test: ```java Injector injector = Guice.createInjector(new GsonModule()); ParseId parseId = injector.getInstance(ParseId.class); ``` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/233#issuecomment-184158082
