Home
last modified time | relevance | path

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

/external/guice/core/test/com/google/inject/
DCircularDependencyTest.java42 AImpl.nextId = 0; in setUp()
50 bind(A.class).to(AImpl.class); in testCircularlyDependentConstructors()
62 @Provides @Singleton A a(B b) { return new AImpl(b); } in testCircularlyDependentConstructorsWithProviderMethods()
75 return new AImpl(bp.get()); in testCircularlyDependentConstructorsWithProviderInstances()
112 assertEquals(1, AImpl.nextId); in assertCircularDependencies()
124 static class AImpl implements A { class in CircularDependencyTest
129 @Inject public AImpl(B b) { in AImpl() method in CircularDependencyTest.AImpl
143 return new AImpl(bp.get()); in get()
154 a = new AImpl(bp.get()); in get()
DScopesTest.java153 bind(A.class).to(AImpl.class); in testScopingAnnotationsOnAbstractTypeViaBind()
167 static class AImpl implements A {} class in ScopesTest