()
| 40 | Module module = |
| 41 | new AbstractModule() { |
| 42 | @Override |
| 43 | protected void configure() { |
| 44 | bind(Foo.class); |
| 45 | bindInterceptor(any(), any(), counter); |
| 46 | } |
| 47 | }; |
| 48 | if (InternalFlags.isBytecodeGenEnabled()) { |
| 49 | Injector injector = Guice.createInjector(module); |
nothing calls this directly
no test coverage detected