You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What I'd like is to have an integration test, from the UserProfileActivity onwards.
From the examples I'm seeing, they only show how to deal with 1 component or top-level component.
How would I get a reference in this case, to the ProfileComponent, since creating a Rule for it will not cut it, since it has to be created like: appComponent.userComponent(...).profileComponent(...)?
Thinking it has something to do with addComponentDependency, but unsure how it should work when I have a module (e.g. UserDataModule) with an activity reference in the middle.
The text was updated successfully, but these errors were encountered:
Let's say I have an AppComponent, which has a subcomponent UserComponent, which in turn has a ProfileComponent, each with sub/modules:
What I'd like is to have an integration test, from the UserProfileActivity onwards.
From the examples I'm seeing, they only show how to deal with 1 component or top-level component.
How would I get a reference in this case, to the ProfileComponent, since creating a Rule for it will not cut it, since it has to be created like: appComponent.userComponent(...).profileComponent(...)?
Thinking it has something to do with
addComponentDependency
, but unsure how it should work when I have a module (e.g. UserDataModule) with an activity reference in the middle.The text was updated successfully, but these errors were encountered: