https://developer.android.com/studio/test/index.html You can use Dagger2 for Local unit tests(located on the module name / src / test / java /.), Instrumented tests(located on the module name / src / androidTest / java /. ) Or both?
Local unit tests
Instrumented tests
Are there any examples of this?
Yes. Dagger2works in unit tests and instrumental tests. Example here: https://github.com/googlesamples/android-architecture/tree/todo-mvp-dagger
Dagger2
The following is an example of a module used in a mock version that can be used to test unit / ui:
@Module abstract public class TasksRepositoryModule { private static final int THREAD_COUNT = 3; @Singleton @Binds @Local abstract TasksDataSource provideTasksLocalDataSource(TasksLocalDataSource dataSource); @Singleton @Binds @Remote abstract TasksDataSource provideTasksRemoteDataSource(FakeTasksRemoteDataSource dataSource); @Singleton @Provides static ToDoDatabase provideDb(Application context) { return Room.databaseBuilder(context.getApplicationContext(), ToDoDatabase.class, "Tasks.db") .build(); } @Singleton @Provides static TasksDao provideTasksDao(ToDoDatabase db) { return db.taskDao(); } @Singleton @Provides static AppExecutors provideAppExecutors() { return new AppExecutors(new DiskIOThreadExecutor(), Executors.newFixedThreadPool(THREAD_COUNT), new AppExecutors.MainThreadExecutor()); } }
https://github.com/googlesamples/android-architecture/blob/todo-mvp-dagger/todoapp/app/src/mock/java/com/example/android/architecture/blueprints/todoapp/data/source/TasksRepositoryModule.java#L24
Source: https://habr.com/ru/post/1692242/More articles:Building using matplotlib: TypeError: float () argument must be a string or a number - pythonUsing the Restrictions method for emails for a specified date - vbaWhat is the difference between glassfish-application.xml and glassfish-web.xml in GlassFish / Payara 4.x? - java-eeShould __repr__ return bytes or unicode? - pythonΠΠ°ΠΊ ΠΈΠ½ΡΠ΅ΡΠΏΠΎΠ»ΠΈΡΠΎΠ²Π°ΡΡ ΡΠΈΠΌΠ²ΠΎΠ» ΠΊΠ°ΠΊ ΡΠΈΠΌΠ²ΠΎΠ» Π² Π²ΡΡΠ°ΠΆΠ΅Π½ΠΈΠΈ ΠΠΆΡΠ»ΠΈΠΈ? - metaprogrammingGolang `select` looks dishonest - concurrencyProblem installing php7.2-mcrypt - githubAngular 2, textarea (add emoji with text) - javascriptΠΡΡΠΏΠΏΠΈΡΠΎΠ²Π°Π½ΠΈΠ΅ ΠΏΠΎ Π΄ΠΈΠ°ΠΏΠ°Π·ΠΎΠ½Ρ ΡΠ°Π·Π½ΠΎΡΡΠ΅ΠΉ ΠΌΠ΅ΠΆΠ΄Ρ ΡΠ»Π΅ΠΌΠ΅Π½ΡΠ°ΠΌΠΈ - pythonRedirecting to activity with saving / creating action stack - javaAll Articles