Searched refs:AImpl (Results 1 – 2 of 2) sorted by relevance
42 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 CircularDependencyTest129 @Inject public AImpl(B b) { in AImpl() method in CircularDependencyTest.AImpl143 return new AImpl(bp.get()); in get()154 a = new AImpl(bp.get()); in get()
153 bind(A.class).to(AImpl.class); in testScopingAnnotationsOnAbstractTypeViaBind()167 static class AImpl implements A {} class in ScopesTest