-
Notifications
You must be signed in to change notification settings - Fork 0
Espresso settings
Devrath edited this page May 17, 2021
·
1 revision
Topic |
---|
Adding an instrumentation runner |
Adding the espresso dependency |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- This is the default runner we will be using to exercise the UI, It means
performing click
,performing swipe
Etc..
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- Above line is the dependency needed for running the espresso tests.