I am following guide from this official site: https://developer.android.com/training/testing/espresso/setup.html#running-tests
To create a test configuration in Android Studio, complete the following steps:
- Open Run > Edit Configurations.
- Add a new Android Tests configuration.
- Choose a module.
- Add a specific instrumentation runner:
- android.support.test.runner.AndroidJUnitRunner
- Run the newly created configuration.
now, 1. is OK, but where in 2. is "Android Tests" configuration?? I can add "Android Instrumented Tests", but then where can I add "android.support.test.runner.AndroidJUnitRunner" in 5.?
