Home
last modified time | relevance | path

Searched refs:ScopedFooImpl (Results 1 – 1 of 1) sorted by relevance

/external/guice/core/test/com/google/inject/
DJitBindingsTest.java130 bind(Foo.class).to(ScopedFooImpl.class); in testLinkedToScoped()
138 ensureFails(injector, ALLOW_BINDING, ScopedFooImpl.class); in testLinkedToScoped()
146 bind(Foo.class).to(ScopedFooImpl.class); in testBasicsWithScoped()
156 ensureFails(injector, ALLOW_BINDING, ScopedFooImpl.class); in testBasicsWithScoped()
165 bind(Foo.class).to(ScopedFooImpl.class); in testFailsIfInjectingScopedDirectlyWhenItIsntBound()
171 assertContains(expected.getMessage(), jitFailed(ScopedFooImpl.class)); in testFailsIfInjectingScopedDirectlyWhenItIsntBound()
685 @Singleton private static class ScopedFooImpl implements Foo {} class in JitBindingsTest
687 @SuppressWarnings("unused") @Inject ScopedFooImpl scopedFoo;