()
| 36 | Guice.createInjector( |
| 37 | new AbstractModule() { |
| 38 | @Override |
| 39 | protected void configure() { |
| 40 | bind(Foo.class).toInstance(foo); |
| 41 | } |
| 42 | }); |
| 43 | |
| 44 | Binding<Foo> fooBinding = injector.getBinding(Key.get(Foo.class)); |
nothing calls this directly
no test coverage detected