Lines Matching refs:childComponent

46   private final ChildComponent childComponent;  field in SubcomponentTest
48 public SubcomponentTest(ParentGetters parentGetters, ChildComponent childComponent) { in SubcomponentTest() argument
50 this.childComponent = childComponent; in SubcomponentTest()
56 assertThat(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()
57 .isSameInstanceAs(childComponent.requiresSingleton().singletonType()); in scopePropagatesUpward_class()
58 assertThat(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()
60 childComponent.newGrandchildComponent().requiresSingleton().singletonType()); in scopePropagatesUpward_class()
65 assertThat(childComponent.requiresSingleton().unscopedTypeBoundAsSingleton()) in scopePropagatesUpward_provides()
66 .isSameInstanceAs(childComponent.requiresSingleton().unscopedTypeBoundAsSingleton()); in scopePropagatesUpward_provides()
67 assertThat(childComponent.requiresSingleton().unscopedTypeBoundAsSingleton()) in scopePropagatesUpward_provides()
69 childComponent in scopePropagatesUpward_provides()
79 Set<Object> childObjectSet = childComponent.objectSet(); in multibindingContributions()
82 childComponent.newGrandchildComponent().objectSet(); in multibindingContributions()
93 .isSameInstanceAs(childComponent.getUnscopedTypeProvider()); in unscopedProviders()
95 .isSameInstanceAs(childComponent.newGrandchildComponent().getUnscopedTypeProvider()); in unscopedProviders()
115 assertThat(childComponent.newGrandchildComponent().needsAnInterface()).isNotNull(); in dependenceisInASubcomponent()