Skip to content

Instantly share code, notes, and snippets.

@oznus
Created July 18, 2017 04:31
Show Gist options
  • Save oznus/ae94caa683211927f642eeef1e3ec0dc to your computer and use it in GitHub Desktop.
Save oznus/ae94caa683211927f642eeef1e3ec0dc to your computer and use it in GitHub Desktop.
Mocking UI tests module and component
@Singleton
@Component(modules = {
MyAppModule.class})
public interface MyAppComponent {
void inject(MainActivity activity);
}
@Module
public class MyAppModule {
@Provides
@Singleton
MyAppNetworkService providesMyAppNetworkService() {
return new MyAppNetworkService();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment